/* Login V2 Styles */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
}

/* Main Container */
.login-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Left Panel - Login Form */
.login-panel-left {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: #FFFFFF;
    position: relative;
    z-index: 10;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.05);
}

.login-card {
    width: 100%;
    max-width: 420px;
}

/* Login Logo */
.login-logo {
    margin-bottom: 1.5rem;
}

.login-logo .logo-image {
    height: 48px;
    width: auto;
    display: block;
}

/* Typography & Form */
.login-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.login-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px 12px 45px;
    /* Space for icon */
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background-color: #FAFAFA;
}

.form-control:focus {
    border-color: #F5C518;
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
    background-color: #fff;
    outline: none;
}

.forgot-password {
    font-size: 0.875rem;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-password:hover {
    color: #F5C518;
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background-color: #F5C518;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(245, 197, 24, 0.2);
}

.btn-login:hover {
    background-color: #E6B916;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(245, 197, 24, 0.3);
}

.btn-login:active {
    transform: translateY(0);
}

.register-link {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.register-link a {
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

.register-link a:hover {
    color: #F5C518;
}

/* Right Panel - Showcase */
.login-panel-right {
    width: 65%;
    background-color: #0F0F0F;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 197, 24, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    top: 0;
    left: 0;
}

.showcase-carousel {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 20;
    padding: 2rem;
}

.slide-item {
    display: none;
    text-align: center;
    animation: fadeInSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-item.active {
    display: block;
}

.slide-icon {
    font-size: 4rem;
    color: #F5C518;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 15px rgba(245, 197, 24, 0.2));
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide-desc {
    font-size: 1.125rem;
    color: #A0A0A0;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 3rem;
}

.indicator {
    width: 32px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.indicator.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #F5C518;
    animation: progressFill 4s linear;
}

/* Animation Keyframes */
@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .login-panel-left {
        width: 45%;
    }

    .login-panel-right {
        width: 55%;
    }
}

@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
    }

    .login-panel-right {
        display: none !important;
    }

    .login-panel-left {
        width: 100%;
        min-height: 100vh;
        padding: 24px;
        align-items: flex-start;
        /* Align top on mobile */
        padding-top: 60px;
    }

    .login-card {
        margin: 0 auto;
    }

    .login-title {
        font-size: 2rem;
    }
}