@import url('https://fonts.googleapis.com/css2?family=Sansation:wght@400;700&display=swap');

.dhab-verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(24,34,56,0.38);
    z-index: 0;
}
body, html {
  height: 100vh;
  min-height: 100vh;
  font-family: 'Sansation', Arial, sans-serif;
  position: relative;
  background: url('/images/DHAB_bg.jpg') no-repeat center center fixed;
  background-size: cover;
}
.dhab-verify-bg, .container.py-5 {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dhab-logo {
    display: block;
    margin: 0 auto 18px auto;
    max-width: 170px;
    height: auto;
}

.dhab-card {
    background: rgba(255,255,255,0.15);
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 740px;
    margin: 40px auto;
    border-top: 6px solid #fdc62c;
    position: relative;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255,255,255,0.25);
}

.dhab-title {
    font-family: 'Sansation', Arial, sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.dhab-desc {
    color: #181a1d;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.13rem;
    font-weight: 500;
}

.dhab-form-label {
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.35rem;
    text-align: left;
    display: block;
    font-size: 1.08rem;
    letter-spacing: 0.2px;
}

.dhab-form-input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid rgba(67,65,67,0.13);
    border-radius: 12px;
    font-size: 1.08rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
    background: rgba(255,255,255,0.65);
    box-shadow: 0 2px 8px rgba(67,65,67,0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #434143;
}
.dhab-form-input:focus {
    border-color: #fdc62c;
    outline: none;
    box-shadow: 0 0 0 2px rgba(253,198,44,0.18);
    background: rgba(255,255,255,0.85);
}

.dhab-form-example {
    background: rgba(255,255,255,0.38);
    color: #424143;
    font-size: 0.97rem;
    border-radius: 10px;
    padding: 0.7rem 1rem;
    margin-bottom: 1.2rem;
    text-align: left;
    box-shadow: 0 1px 4px rgba(67,65,67,0.04);
}
.dhab-form-example code {
    color: #68472f;
    font-weight: 700;
    background: none;
    font-size: 0.98em;
}

.dhab-form-help {
    background: rgba(255,255,255,0.38);
    /* color: #68482f; */
    font-size: 0.97rem;
    border-radius: 10px;
    padding: 0.7rem 1rem;
    margin-top: 0.1rem;
    margin-bottom: 0.7rem;
    text-align: left;
    display: block;
    line-height: 1.5;
    box-shadow: 0 1px 4px rgba(67,65,67,0.04);
}

.dhab-form-help code{
    color: #68472f;
    font-weight: 700;
    background: none;
    font-size: 0.98em;
}

.form-group {
    margin-bottom: 1.3rem;
}

.dhab-btn {
    width: 100%;
    background: linear-gradient(90deg, #fdc62c 0%, #ea5547 100%);
    color: #fff;
    font-family: 'Sansation', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    border: none;
    border-radius: 10px;
    padding: 1rem 0;
    margin-top: 1.5rem;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(234,85,71,0.08);
    cursor: pointer;
    position: relative;
    letter-spacing: 0.5px;
}
.dhab-btn:hover, .dhab-btn:focus {
    background: linear-gradient(90deg, #ea5547 0%, #fdc62c 100%);
    color: #68482f;
}

.dhab-alert {
    background: #ea5547;
    color: #fff;
    border-radius: 6px;
    padding: 0.7rem 1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1rem;
}

.dhab-recaptcha {
    display: flex;
    justify-content: center;
    margin: 1.2rem 0 0.5rem 0;
}

@media (max-width: 600px) {
    .dhab-card {
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
        max-width: 98vw;
        margin: 18px auto;
    }
    .dhab-logo {
        max-width: 120px;
        margin-bottom: 16px;
    }
    .dhab-title {
        font-size: 1.3rem;
    }
}

/* Loading spinner for button */
.dhab-btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}
.dhab-spinner {
    border: 3px solid #fdc62c;
    border-top: 3px solid #ea5547;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: dhab-spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
@keyframes dhab-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 