:root {
    --brand-color: #FF6600;
    --brand-hover: #ff8533;
    --glass-bg: rgba(255, 255, 255, 0.88);
}

body.login-page {
    /* Media-centric cinematic background */
    background:  url("../img/bg13.jpg") no-repeat center center fixed;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
}

/* Glassmorphism Card */
.login-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 420px;
    padding: 3rem 2.5rem;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Typography & Inputs */
.title-main {
    color: #111827;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 0.25rem;
}

.input-container {
    position: relative;
    margin-bottom: 1.25rem;
}

.input-container i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 1.1rem;
}

.modern-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #d1d5db;
    border-radius: 1rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.modern-input:focus {
    outline: none;
    border-color: var(--brand-color);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.15);
    background: #fff;
}

/* Flashdata Alert */
.flash-alert {
    display: flex;
    align-items: flex-start; /* Aligns icon to top if message is multi-line */
    gap: 12px;
    background: #fff1f2;
    border: 1px solid #fecaca;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #be123c;
    font-size: 0.875rem;
    line-height: 1.4;
}

.alert-content strong {
    display: block;
    margin-bottom: 2px;
    color: #991b1b;
}

/* Button & Footer */
.btn-modern {
    width: 100%;
    background: linear-gradient(to right, #FF6600, #FF8C00);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
    box-shadow: 0 10px 15px -3px rgba(255, 102, 0, 0.3);
}

.btn-modern:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.footer-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-logos img {
    filter: grayscale(1) opacity(0.5);
    transition: 0.3s;
    max-height: 25px;
}

.footer-logos img:hover {
    filter: grayscale(0) opacity(1);
}


