﻿/* ==========================================================
   AUTH LAYOUT
========================================================== */

/* Full Screen Background */
.auth-bg {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.auth-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.10) );
}

/* Content Wrapper */
.auth-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 5%;
}

/* ==========================================================
   LEFT INFORMATION PANEL
========================================================== */

.auth-left {
    flex: 1;
    color: #ffffff;
    max-width: 600px;
    padding-right: 60px;
}

.auth-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.auth-desc {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 28px;
}

.auth-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .auth-features li {
        font-size: 15px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
    }

    .auth-features i {
        color: #4ade80;
        margin-right: 10px;
        font-size: 16px;
    }

/* ==========================================================
   RIGHT LOGIN PANEL
========================================================== */

.auth-right {
    width: 420px;
}

/* Login Card */
.auth-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    animation: fadeUp 0.6s ease;
}

/* ==========================================================
   ANIMATIONS
========================================================== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 768px) {
    .auth-content {
        justify-content: center;
        padding: 20px;
    }

    .auth-left {
        display: none;
    }

    .auth-right {
        width: 100%;
        max-width: 420px;
    }
}
