/* Login Page - Split Screen, White/Modern/Square */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #F9FAFB;
    color: #111827;
    min-height: 100vh;
}

.login-container {
    display: flex;
    min-height: 100vh;
}

/* Left brand panel */
.login-brand {
    flex: 1;
    background: #111827;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.brand-content {
    max-width: 440px;
}

.brand-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.brand-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.brand-content > p {
    font-size: 16px;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 40px;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #D1D5DB;
}

.feature svg {
    color: #3B82F6;
    flex-shrink: 0;
}

/* Right form panel */
.login-form-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background: #FFFFFF;
}

.login-form {
    width: 100%;
    max-width: 380px;
}

.login-form h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.form-subtitle {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #D1D5DB;
    background: #FFFFFF;
    font-size: 14px;
    font-family: inherit;
    color: #111827;
    outline: none;
    transition: border-color 0.15s;
}

.form-group input:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-group input::placeholder {
    color: #9CA3AF;
}

.btn-primary {
    width: 100%;
    height: 44px;
    background: #111827;
    color: #FFFFFF;
    border: none;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
    margin-top: 8px;
}

.btn-primary:hover {
    background: #1F2937;
}

.btn-primary:active {
    background: #030712;
}

.error-message {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #DC2626;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .login-brand {
        padding: 32px 24px;
        min-height: auto;
    }

    .brand-content h1 {
        font-size: 24px;
    }

    .brand-features {
        display: none;
    }

    .brand-content > p {
        margin-bottom: 0;
    }

    .login-form-wrapper {
        padding: 32px 24px;
    }
}
