/* ================================================================
   REGISTRATION PAGE
   ================================================================ */
.register-section {
  min-height: calc(100vh - 79px);
  background: url('../img/2026/register/main-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 1rem 7rem;
  display: flex;
  align-items: center;
}

.register-title {
  font-size: 2.2rem;
  color: white;
  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
}

.register-subtitle {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: white;
}

.register-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

.register-card h4{
  font-weight: 600;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 0px;
  margin-bottom: 1rem;
}

.register-input {
  border: 1px solid #dde4ec;
  border-radius: 8px;
  padding: .6rem .9rem;
  font-size: .93rem;
  transition: border-color .2s, box-shadow .2s;
}

.register-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,124,196,.12);
  outline: none;
}


.btn-register-submit {
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  letter-spacing: .01em;
  transition: background .2s;
}

.btn-register-submit:hover {
  background: #005fa3;
  color: #fff;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.back-home-btn {
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  padding: .55rem 1.5rem;
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  width: 50%;
  text-align: center;
  justify-content: center;
}

.back-home-btn:hover {
  background: #005fa3;
  color: #fff;
}

@media (max-width: 1239px) {
  .register-section {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 1rem 2rem;
  }
}

@media (max-width: 768px) {
  .register-section {
    padding: 1rem 1rem;
  }
  .register-title{
    font-size: 2rem;
    padding-top: 1rem;
  }
  .register-subtitle{
    font-size: 16px;
  }
}