/* ---------- white wrapper ---------- */
.glass-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.login-container {
    width: clamp(320px, 90%, 400px);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.login-container h2 {
    color: #650640;
    margin-bottom: 1.5rem;
    margin-right: 3rem;
    font-weight: 600;
}

/* ---------- inputs ---------- */
.login-container label {
    display: block;
    color: #650640;
    margin: 0.5rem 0 0.25rem;
    font-size: 1.2rem;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: #ffffff;
    color: #650640;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.login-container input::placeholder {
    color: #9ca3af;
}
.login-container input:focus {
    border-color: #650640;
    box-shadow: 0 0 0 3px rgba(101, 6, 64, 0.1);
}

/* ---------- button ---------- */
.btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.8rem;
    border: none;
    border-radius: 0.5rem;
    background: #ffffff;
    color: #650640;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s;
}
.btn:hover { background: #f0f0f0; }

/* ---------- link ---------- */
.makeanaccount {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #fcc6b3;
}
.makeanaccount a {
    color: #fcc6b3;
    text-decoration: none;
}
.makeanaccount a:hover {
    text-decoration: underline;
    color: #E3AF9D;
}
/* ------------ Error Messages ------------ */
.error-message {
            background: #fee;
            color: #c00;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #fcc;
            margin-bottom: 15px;
            margin-top: 15px;
            font-size: 0.95rem;
}

.lockout-message {
            background: #fff3cd;
            color: #856404;
            padding: 16px;
            border-radius: 8px;
            border: 1px solid #ffeaa7;
            margin-bottom: 15px;
            margin-top: 15px;
            text-align: center;
            line-height: 1.6;
}

.lockout-message a {
            display: inline-block;
            margin-top: 25px;
            margin-bottom: 15px;
            padding: 8px 16px;
            background: #25D366;
            color: white !important;
            border-radius: 6px;
            text-decoration: none;
            transition: background 0.3s;
}

.lockout-message a:hover {
            background: #20BA5A;
            text-decoration: none !important;
    
}