@font-face {
  font-family: myHealthFirst-Bold;
  src: url(/fonts/myHealthFirst-Bold.ttf) format("truetype");
}
@font-face {
  font-family: myHealthFirst-Regular;
  src: url(/fonts/myHealthfirst-Regular.ttf) format("truetype");
}
.main {
  background-color: #0a3fa8;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 90%;
  max-width: 425px;
  height: 90vh;
  background: #fff;
  border-radius: 36px;
  padding: 10px 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  margin-top: 20px;
  text-align: center;
}

.logo img {
  width: 150px;
}

.title {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  color: #222;
}

.input-box {
  width: 100%;
  margin-top: 30px;
}

.field {
  width: 100%;
  margin-bottom: 16px;
}

.field-title {
  font-size: 16;
  margin-bottom: 5px;
  color: #333;
}

.field input {
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: 1px solid #ccc;
  outline: none;
  box-sizing: border-box;
}

.btn {
  width: 100%;
  margin-top: 30px;
}

.btn button {
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: #0a3fa8;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.btn button:active {
  opacity: 0.8;
}

/* <!-- Error Modal --> */
.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-box {
  width: 85%;
  max-width: 320px;
  background: #fff;
  border-radius: 28px;
  padding: 30px 20px;
  text-align: center;
  animation: pop 0.2s ease-out;
}

@keyframes pop {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-icon {
  font-size: 64px;
  margin-bottom: 10px;
}
.icon {
  width: 80px;
  height: auto;
}
.modal-title-success {
  font-size: 22px;
  margin-bottom: 10px;
  font-family: myHealthFirst-Bold;
}

.modal-title-error {
  color: #f4b400;
  font-size: 22px;
  margin-bottom: 10px;
  font-family: myHealthFirst-Bold;
}

.modal-text {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-family: myHealthFirst-Bold;
}

.modal-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 14px;
  font-size: 18px;
  font-weight: bold;
  background: #0a3fa8;
  color: #fff;
}
