.box {
  max-width: 450px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.box .title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.box form label {
  font-size: 16px;
}

.box form input[type="email"],
.box form input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
}

.box .forget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 16px;
}

.box .forget input[type="checkbox"] {
  display: none;
}

.box .forget .checkbox-custom {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  position: relative;
  margin-right: 10px;
}

.box .forget .checkbox-custom:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.box .forget input[type="checkbox"]:checked + .checkbox-custom:before {
  opacity: 1;
  background-color: #2196F3;
}

.box .forget .label-text {
  font-size: 16px;
}

.box .option {
  display: block;
  text-align: center;
  font-size: 20px;
  margin: 20px 0;
}

.box .button {
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  background-color: #2196F3;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 16px;
}

.box .button#register_hospital {
  background-color: #4CAF50;
}

.box p {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .box {
    padding: 20px;
  }

  .box .title {
    font-size: 24px;
  }

  .box form label {
    font-size: 14px;
  }

  .box form input[type="email"],
  .box form input[type="password"] {
    padding: 8px;
    font-size: 14px;
  }

  .box .forget {
    font-size: 14px;
  }

  .box .option {
    font-size: 18px;
    margin: 10px 0;
  }

  .box .button {
    font-size: 14px;
  }

  .box p {
    font-size: 12px;
  }
}
