.auth-page {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('../assets/bg-white-nights.jpg');
    background-size: cover;
    display: flex; justify-content: center; align-items: center; height: 100vh;
}
.auth-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 60px 40px; border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center; width: 100%; max-width: 400px; z-index: 10;
}
.auth-logo { font-family: 'Playfair Display', serif; letter-spacing: 8px; font-size: 28px; margin-bottom: 10px; }
.auth-subtitle { font-size: 10px; text-transform: uppercase; letter-spacing: 4px; color: rgba(255,255,255,0.5); margin-bottom: 40px; }
.auth-form { display: flex; flex-direction: column; gap: 20px; }
.input-group input {
    width: 100%; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px; color: white; outline: none; transition: 0.3s;
}
.input-group input:focus { border-color: rgba(255, 255, 255, 0.4); }
.auth-submit {
    background: white; color: black; border: none; padding: 15px;
    font-weight: 700; letter-spacing: 2px; cursor: pointer; margin-top: 10px;
}
.auth-footer { margin-top: 30px; font-size: 13px; color: rgba(255,255,255,0.6); }
.auth-link { color: white; text-decoration: none; font-weight: 600; margin-left: 5px; }
/* =========================================
   VERIFICATION IMMERSIVE PAGE
========================================= */

.verification-body{

    margin:0;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    background:
        linear-gradient(
            rgba(5,5,8,0.78),
            rgba(5,5,8,0.92)
        ),
        url('../assets/bg-zarathustra.jpg');

    background-size:cover;
    background-position:center;

    font-family:'Inter',sans-serif;

    position:relative;
}

/* dark cinematic overlay */

.verification-overlay{

    position:absolute;
    inset:0;

    background:
        radial-gradient(
            circle at center,
            rgba(255,180,80,0.05),
            transparent 60%
        );

    backdrop-filter:blur(2px);
}

/* centered content */

.verification-wrapper{

    position:relative;
    z-index:2;

    text-align:center;

    max-width:42rem;

    padding:3rem;

    animation:fadeRise 1.5s ease;
}

/* logo */

.verification-logo{

    width:8rem;

    margin-bottom:1.5rem;

    filter:
        drop-shadow(0 0 2rem rgba(255,180,80,0.18));

    animation:floatLogo 5s ease-in-out infinite;
}

/* title */

.verification-title{

    font-family:'Playfair Display',serif;

    font-size:clamp(2rem,4vw,3.5rem);

    letter-spacing:0.4rem;

    margin-bottom:1.5rem;

    color:#f8f4ee;
}

/* text */

.verification-message{

    font-size:1rem;

    line-height:2;

    color:rgba(255,255,255,0.72);

    letter-spacing:0.04rem;
}

/* subtle glowing orb */

.verification-glow{

    position:absolute;

    top:50%;
    left:50%;

    width:18rem;
    height:18rem;

    transform:translate(-50%,-50%);

    background:
        radial-gradient(
            circle,
            rgba(255,180,80,0.12),
            transparent 70%
        );

    filter:blur(40px);

    z-index:-1;

    animation:pulseGlow 6s ease-in-out infinite;
}

/* animations */

@keyframes fadeRise{

    from{
        opacity:0;
        transform:translateY(2rem);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes floatLogo{

    0%{
        transform:translateY(0rem);
    }

    50%{
        transform:translateY(-0.5rem);
    }

    100%{
        transform:translateY(0rem);
    }

}

@keyframes pulseGlow{

    0%{
        opacity:0.4;
        transform:translate(-50%,-50%) scale(1);
    }

    50%{
        opacity:0.8;
        transform:translate(-50%,-50%) scale(1.08);
    }

    100%{
        opacity:0.4;
        transform:translate(-50%,-50%) scale(1);
    }

}
.field-error {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 80, 80, 0.85);
    margin-top: 6px;
}

.field-status {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
}

.status-ok {
    color: rgba(80, 200, 120, 0.85);
}

.status-err {
    color: rgba(255, 80, 80, 0.85);
}

.password-rules {
    display: none;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 8px;
}

.password-input-active .password-rules {
    display: flex;
}
.rule {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.3);
    transition: all 0.3s;
}

.rule-pass {
    border-color: rgba(80, 200, 120, 0.5);
    color: rgba(80, 200, 120, 0.85);
}

.rule-fail {
    border-color: rgba(255, 80, 80, 0.4);
    color: rgba(255, 80, 80, 0.7);
}
.forgot-link {
    display: block;
    text-align: right;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    margin-top: 6px;
    transition: color 0.3s;
}

.forgot-link:hover {
    color: rgba(255,255,255,0.7);
}
.auth-success {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(80, 200, 120, 0.85);
    text-align: center;
    margin-bottom: 20px;
}
.input-group {
    position: relative;
}

/* BASE ICON POSITION */
.toggle-password{
    position: absolute;

    right: 3%;

    top: 50%;
    transform: translateY(-50%);

    height: 100%;
    display: flex;
    align-items: center;

    cursor: pointer;
    opacity: 0.4;
}
/* hover */
.toggle-password:hover {
    opacity: 1;
}

/* HOLD BUTTON STYLE */
.toggle-password.hold-btn {
    width: 10%;          /* responsive size */
    max-width: 38px;
    min-width: 28px;

    height: 55%;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12%;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(8px);

    transition: all 0.2s ease;
}

/* hover effect */
.toggle-password.hold-btn:hover {
    opacity: 1;
    background: rgba(255,255,255,0.12);
}

/* pressed effect */
.toggle-password.hold-btn:active {
    transform: translateY(-50%) scale(0.92);
    background: rgba(255,255,255,0.18);
}