* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

.basic-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 18px;
  text-align: left;
}

.basic-table th,
.basic-table td {
  padding: 12px;
  border: 1px solid #ddd;
}

.basic-table th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.basic-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.basic-table textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  height: 5rem;
}

.basic-table input[type="text"],
.basic-table input[type="number"],
.basic-table input[type="email"],
.basic-table input[type="password"] {
  padding: 5px;
}

button {
  padding: 5px;
}

.err-msg {
  color: red;
}