/* assets/css/setup_password.css */
/* Styles for EOC onboarding and verification screens */

.onboarding-container {
    opacity: 0;
    transform: translateY(20px);
}

.onboarding-logo {
    animation: float-logo 4s ease-in-out infinite;
}

@keyframes float-logo {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

/* Custom OTP Input spacing */
.otp-input-field {
    letter-spacing: 0.5em;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Password strength indicator bars */
.strength-bar {
    height: 4px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* PDPA scrollable container */
.pdpa-box {
    max-height: 180px;
    overflow-y: auto;
    font-size: 0.75rem;
    line-height: 1.4;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
}

/* Cooldown active style */
.btn-cooldown {
    pointer-events: none;
    opacity: 0.6;
}
