/* Modern & Ultra Luxury Split Auth Layout */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

body {
    background-color: #f8fafc;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.split-auth-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: calc(100% - 40px);
    max-width: 1050px;
    margin: 40px auto 60px auto;
    min-height: 580px;
    background: #ffffff;
    border-radius: 28px;
    border: 1.5px solid rgba(212, 168, 83, 0.35);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08), 0 0 30px rgba(212, 168, 83, 0.1);
    overflow: hidden;
    position: relative;
}

.auth-left {
    flex: 1;
    min-width: 0;
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    max-width: 540px;
    margin: 0 auto;
    z-index: 2;
}

.auth-header {
    text-align: left;
    margin-bottom: 25px;
}

.auth-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    margin-top: 0;
    letter-spacing: -0.5px;
}

.auth-header p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.auth-right {
    flex: 1.2;
    min-width: 0;
    background: linear-gradient(135deg, #090d16 0%, #151e32 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Luxury gold glow effect inside auth-right */
.auth-right::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    top: -80px;
    right: -80px;
    border-radius: 50%;
    z-index: 0;
}

.auth-right .swiper { 
    width: 100%; 
    height: 100%; 
    min-width: 0;
    z-index: 2; 
}
.auth-right .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.auth-right .swiper-slide img { 
    width: 90%; 
    max-width: 460px;
    height: auto; 
    border-radius: 20px; 
    object-fit: contain; 
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.5));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.auth-right .swiper-slide-active img {
    transform: scale(1.05);
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    text-decoration: none;
    transition: transform 0.2s;
}
.auth-logo:hover {
    transform: scale(1.03);
}

.auth-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.auth-form-group {
    margin-bottom: 20px;
    position: relative;
}

.auth-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.auth-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #cbd5e1;
    background-color: #f8fafc;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
    color: #0f172a;
    font-family: inherit;
}

.auth-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.auth-input:focus {
    border-color: #d4a853;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.2);
}

.auth-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffe082 0%, #d4a853 50%, #b8860b 100%);
    color: #0b0b0c;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.4);
    letter-spacing: 0.3px;
}

.auth-submit:hover {
    background: linear-gradient(135deg, #fff1b8 0%, #dfb256 50%, #c49416 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 168, 83, 0.55);
}

.auth-submit:active {
    transform: translateY(1px);
}

.auth-link {
    text-align: center;
    margin-top: 25px;
    font-size: 0.92rem;
    color: #64748b;
}

.auth-link a {
    color: #b45309;
    text-decoration: none;
    font-weight: 800;
    transition: color 0.2s;
}

.auth-link a:hover {
    color: #92400e;
    text-decoration: underline;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .auth-right {
        display: none;
    }
    .split-auth-container {
        min-height: calc(100vh - 70px);
        background: #f8fafc;
        border: none;
        box-shadow: none;
        align-items: center;
        padding: 30px 15px;
        margin: 20px auto;
    }
    .auth-left {
        border-radius: 24px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
        padding: 40px 30px;
        background: #ffffff;
    }
}

@media (max-width: 576px) {
    .split-auth-container {
        padding: 10px;
    }
    .auth-left {
        padding: 30px 20px;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }
    .auth-logo {
        justify-content: center;
        margin-bottom: 25px;
    }
    .auth-logo img {
        height: 42px;
    }
    .auth-header h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    .auth-header p {
        text-align: center;
    }
    .auth-input {
        padding: 13px 16px;
        font-size: 0.92rem;
    }
    .auth-submit {
        padding: 14px;
        font-size: 0.95rem;
    }
}
