﻿/* =========================================================
   AUTH SHELL – SHARED LOGIN / ACTIVATION / RECOVERY LAYOUT
   ========================================================= */

/* ---------- Shell ---------- */

.auth-card-wrapper {
    gap: 0;
}

/* Left panel gradient */
.auth-blue-panel {
    background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.06), transparent 60%), linear-gradient(180deg, #4A5578 0%, #3F4B6D 100%);
}

/* Left card */
.auth-blue-card {
    border-radius: 1.25rem 0 0 1.25rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    border: none;
}

/* Right card */
.auth-gray-card {
    border-radius: 0 1.25rem 1.25rem 0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border: none;
    background-color: #ffffff;
}

/* ---------- Left Panel ---------- */

.auth-blue-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

/* Authoritative vertical stack */
.auth-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    max-width: 220px;
}

/* Lock icon */
.auth-lock-icon {
    width: 84px;
    height: 84px;
    stroke: #ffffff;
    stroke-width: 2.5;
    fill: none;
    opacity: 0.95;
    margin-bottom: 0.75rem;
}

/* Micro heading */
.auth-microtitle {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    margin: 0;
}

/* Subtitle */
.auth-microsub {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    margin: 0;
    line-height: 1.25;
    /* Optional: force single line */
    /* white-space: nowrap; */
}

/* ---------- Right Panel ---------- */

.auth-white-card {
    background-color: #ffffff;
    border-radius: .75rem;
    padding: 1.75rem 2rem;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    width: 100%;
    box-sizing: border-box;
}




    /* ---------- Inputs ---------- */

    .auth-white-card .form-control {
        height: 40px;
        border-radius: 10px;
        border: 1px solid #D6DBE6;
        font-size: 0.95rem;
    }

        .auth-white-card .form-control:focus {
            border-color: #5B7CFA;
            box-shadow: 0 0 0 3px rgba(91,124,250,0.18);
        }

    /* ---------- Buttons ---------- */

    .auth-white-card .btn-primary {
        height: 46px;
        border-radius: 10px;
        font-weight: 600;
        transition: all 0.15s ease;
    }

        .auth-white-card .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.15);
        }

    /* ---------- Links ---------- */

    .auth-white-card a {
        font-size: 0.85rem;
        color: #5E6C84;
        text-decoration: none;
    }

        .auth-white-card a:hover {
            text-decoration: underline;
        }


    /* Placeholder text styling */
    .auth-white-card ::placeholder {
        font-size: 0.85rem;
        color: #9AA5B1; /* optional: softer placeholder color */
    }

/* ---------- Viewport centering ---------- */

/*.auth-shell-viewport {
    min-height: calc(100vh - 150px);*/ /* subtract header */
    /*display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
}*/


.auth-shell-viewport {
    flex: 1; /* KEY: participate in app-main flex */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem 2rem;
    box-sizing: border-box;
}


@media (max-width: 768px) {

    .auth-shell-viewport {
        align-items: flex-start; /* stop vertical centering */
        padding-top: 1.5rem;
        padding-bottom: 4rem; /* clears footer */
        min-height: auto; /* allow natural height */
    }
}


