body {
    font-family: 'Outfit', sans-serif;
    background-color: #f4f6fa;
    margin: 0;
    min-height: 100vh;
}

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

/* Brand Side */
.login-brand {
    flex: 1.2;
    background: linear-gradient(135deg, #2a2e35 0%, #181a1f 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 3rem;
}

.login-brand::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 50%);
    top: -25%;
    left: -25%;
    pointer-events: none;
}

/* Form Side */
.login-form-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.login-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05), 0 5px 15px rgba(0,0,0,0.03);
    padding: 50px 40px;
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 10;
}

.form-control {
    border-radius: 10px;
    padding: 14px 15px 14px 45px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    font-size: 0.95rem;
    color: #334155;
    transition: all 0.2s;
}

.form-control:focus {
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(118, 75, 162, 0.1);
    border-color: var(--primary-color);
}

.input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 18px;
    color: #94a3b8;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.form-control:focus + .input-icon, 
.position-relative:focus-within .input-icon {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-color);
    filter: brightness(0.85);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #94a3b8;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.toggle-password:hover {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .login-brand {
        display: none;
    }
    .login-form-container {
        background: linear-gradient(135deg, #2a2e35 0%, #181a1f 100%);
    }
    .login-card {
        padding: 40px 30px;
    }
}
