body {
  background-color: #063a4f;
}

.form-container {
  width: min(100%, 480px);
  margin: 50px auto;
  background: #fff;
  padding: 10px 30px;
  text-align: center;
  border-radius: 20px;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.2),
    0 6px 20px rgba(0, 0, 0, 0.19);
}

.form-container .img-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 20px auto 25px;
}

.img-holder .logo {
  width: 50px;
}

.img-holder h3 {
  color: #004840;
}

.form-container h1 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.my-p {
  color: #6c757d;
  margin-bottom: 15px;
  font-size: 11px;
  font-weight: bold;
}

.form-control-lg {
  height: 60px;
  border-radius: 5px;
  font-size: 16px;
}

::placeholder {
  font-size: 0.8rem;
  opacity: 0.5;
  color: #ccc;
}

.btn-submit {
  background: linear-gradient(90deg, #f88e01, #fc6102);
  border: none;
  height: 60px;
  font-size: 18px;
  font-weight: bold;
  border: none !important;
  transition: 0.3s;
}

btn-submit:hover {
  background: linear-gradient(90deg, #fc6102, #f88e01);
}

.custom-checkbox {
  display: flex;
  margin-bottom: 20px;
}

.text-start .policy-text {
  padding: 1rem;
  text-decoration: none;
  font-size: 13px;
}

.policy-text a:hover {
  text-decoration: underline;
}

.text-start .policy-text2 {
  text-decoration: none;
  color: #00b8c2;
}

input[type="checkbox"] {
  width: 3rem;
}

.footer-link {
  margin-top: 20px;
}

.footer-link p {
  font-size: 15px;
}

.footer-link a {
  color: #00b8c2;
  text-decoration: none;
  font-size: 15px;
}

.footer-link a:hover {
  text-decoration: underline;
}

#success-messages {
  background-color: green;
  color: white;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 17px;
  padding-right: 30px;
  text-align: left;
  position: fixed;
  top: 41.5px;
  right: 0px;
  z-index: 9999;
  letter-spacing: 0.6px;
  font-size: 15px;
  border-radius: 7px;
}

#close-success {
  display: block;
  position: absolute;
  right: 6px;
  top: 12px;
  font-size: 12px;
}
