.sign-up {
  background-color: #eee;
  width: 100%;
  overflow-x: hidden;
}
.content {
  background-color: white;
  height: 88%;
  box-shadow: 0 2px 20px 2px rgb(150 150 150);
  margin: 25px 0;
}
.header {
  background-color: var(--mainColor);
  font-size: 30px;
  color: white;
  font-weight: bold;
  padding: 10px;
}
.data label {
  width: 100%;
  margin-top: 2em;
  padding: 0 1em;
  font-size: 16px;
  font-weight: 600;
  color: var(--mainColor);
}
.btn {
  padding: 12px;
  background-color: #1360c4;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}
.submit [type="submit"]:hover,
.submit [type="reset"]:hover {
  color: white;
}
.submit [type="submit"] {
  padding: 12px 16px;
}
.submit {
  margin: 1em 5px;
}
.mg label {
  padding: 0;
  margin: 10px auto;
  color: #555;
  width: fit-content;
}
.mg label:hover {
  cursor: pointer;
}
.mg label:active {
  color: #1360c4;
}

label {
  color: var(--blue);
  font-weight: bold;
  margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
select {
  width: 100%;
  height: 34px;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  color: var(--dark-blue);
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  outline-color: var(--blue);
}
input::placeholder {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .content {
    height: 100%;
  }
  .name {
    flex-direction: column;
  }
}
.red{
  color: red;
}
