:root {
    --primary-color: #6C5DD3;
    --text-color: #11142D;
    --text-muted: #808191;
    --bg-color: #F4F5F7;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.login-wrapper {
    background: #FFFFFF;
    width: 100%;
    max-width: 1000px;
    height: 600px;
    border-radius: 24px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
}

.login-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-right {
    flex: 1.2;
    background: linear-gradient(135deg, #6C5DD3 0%, #4D42A6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
    padding: 40px;
    text-align: center;
}

.login-right::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.login-right::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -20px;
    left: -20px;
}

.brand {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.welcome-text h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.welcome-text p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

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

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E4E4E4;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    transition: 0.3s;
    background: #FCFCFD;
}

.form-input:focus {
    border-color: var(--primary-color);
    background: #fff;
    outline: none;
}

.login-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.login-btn:hover {
    background: #5b4eb8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 93, 211, 0.3);
}

.alert-modern {
    background: #FFE5E5;
    color: #FF4D4D;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    margin-bottom: 24px;
    display: none;
    border-left: 4px solid #FF4D4D;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 300;
}

@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
        height: auto;
        margin: 20px;
        max-width: 400px;
    }

    .login-right {
        display: none;
    }

    .login-left {
        padding: 40px;
    }
}