/* ==============================
   LOGIN PAGE SCOPE
============================== */

html, body {
    height: 100%;
    margin: 0;
    overflow: hidden; /* 🚫 no scroll */
}

.login-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff; /* ✅ white background */

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
}

/* ==============================
   LOGIN CARD
============================== */

.login-wrapper .login-card {
    width: 100%;
    max-width: 420px;
    padding: 44px 42px;

    background: #0B132B; /* ✅ brand blue */
    border-radius: 18px;

    box-shadow:
        0 24px 50px rgba(11, 19, 43, 0.35),
        0 8px 20px rgba(11, 19, 43, 0.2);
}

/* ==============================
   LOGO
============================== */

.login-wrapper .login-logo {
    text-align: center;
    margin-bottom: 24px;
}

.login-wrapper .login-logo img {
    max-width: 170px;
    height: auto;
}

/* ==============================
   TITLE
============================== */

.login-wrapper h1 {
    margin: 0 0 28px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

/* ==============================
   ERROR MESSAGE
============================== */

.login-wrapper .login-error {
    background: rgba(255, 80, 80, 0.15);
    color: #ffb3b3;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;

    animation: shake 0.35s ease;
}

/* ==============================
   FORM
============================== */

.login-wrapper .login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.login-wrapper .form-group {
    display: flex;
    flex-direction: column;
}

.login-wrapper .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
    color: #d1d5db;
}

.login-wrapper .form-group input {
    height: 48px;
    padding: 0 14px;
    font-size: 15px;

    border-radius: 12px;
    border: 1px solid transparent;

    background: #ffffff;
    color: #0B132B;

    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.login-wrapper .form-group input:focus {
    outline: none;
    border-color: #C9A24D;
    box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.35);
}

/* Error input state (JS controlled) */
.login-wrapper .form-group input.is-error {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.35);
}

/* ==============================
   BUTTON
============================== */

.login-wrapper .btn-login {
    margin-top: 10px;
    height: 50px;

    border-radius: 14px;
    border: none;

    background: #C9A24D;
    color: #0B132B;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.05s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
}

.login-wrapper .btn-login:hover {
    background: #d6ae57;
    box-shadow: 0 12px 28px rgba(201, 162, 77, 0.45);
}

.login-wrapper .btn-login:active {
    transform: translateY(1px);
}

/* ==============================
   ANIMATIONS
============================== */

@keyframes shake {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(-4px); }
    50%  { transform: translateX(4px); }
    75%  { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}

/* ---------------------------------------
   Responsive (Mobile)
---------------------------------------- */
@media (max-width: 900px) {
.login-wrapper {
    padding: 0PX 24PX;
}

    
}