:root {
    --primary-fuchsia: #e42da4;
    --primary-navy: #121672;
    --accent-gold: #ffa41b;
    --background-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: url('../assets/background-light.jpg') no-repeat center center fixed;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    display: flex;
    min-height: 100vh;
    background: white;
}

/* Left Panel */
.login-left-panel {
    flex: 1;
    background: var(--primary-navy);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.illustration {
    max-width: 400px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.illustration img {
    width: auto;
    height: 180px;
    object-fit: contain;
}

.illustration-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 400px;
}

/* Right Panel */
.login-right-panel {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
    max-width: 360px;
}

.login-header h2 {
    color: var(--primary-navy);
    font-size: 24px;
    margin-bottom: 8px;
}

.login-header p {
    color: rgba(18, 22, 114, 0.7);
    font-size: 14px;
}

.login-form {
    width: 100%;
    max-width: 360px;
}

.pro-global-badge {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pro-text {
    background: linear-gradient(135deg, var(--primary-fuchsia), #d12894);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    padding-right: 8px;
}

.global-text {
    color: var(--primary-navy);
    font-weight: 500;
}

.welcome-text {
    color: white;
    text-align: center;
    margin-top: 20px;
}

.welcome-text h1 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 10px;
}

.welcome-text p {
    font-size: 16px;
    opacity: 0.9;
}

/* Login Form Styles */
.login-form {
    width: 100%;
    max-width: 360px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    color: var(--primary-navy);
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: #F9FAFB;
    border: 1px solid rgba(18, 22, 114, 0.3);
    border-radius: 8px;
    color: var(--primary-navy);
    font-size: 15px;
    transition: all 0.2s ease;
}

.form-group input:hover {
    border-color: rgba(18, 22, 114, 0.5);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-fuchsia);
    box-shadow: 0 0 0 3px rgba(228, 45, 164, 0.1);
    background: #FFFFFF;
}

.form-group input::placeholder {
    color: rgba(18, 22, 114, 0.5);
}

.login-button {
    width: 100%;
    padding: 14px;
    background: var(--primary-fuchsia);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 32px;
    box-shadow: 0 4px 15px rgba(228, 45, 164, 0.2);
}

.login-button:hover {
    background: #d12894;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 45, 164, 0.3);
}

.login-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(228, 45, 164, 0.2);
}

.login-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    width: 100%;
    max-width: 360px;
}

.login-footer a {
    color: rgba(18, 22, 114, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.login-footer a:hover {
    color: var(--primary-fuchsia);
}

.error-message {
    background: #FEE2E2;
    border: 1px solid #FCA5A5;
    color: #B91C1C;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Update media queries */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .login-left-panel {
        padding: 40px 20px;
    }

    .login-right-panel {
        padding: 40px 20px;
    }

    .illustration {
        max-width: 300px;
    }

    .login-header img {
        height: 100px;
    }

    .login-form,
    .login-footer {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .login-left-panel {
        padding: 30px 15px;
    }

    .login-right-panel {
        padding: 30px 15px;
    }

    .login-header img {
        height: 80px;
    }

    .illustration {
        max-width: 250px;
    }

    .login-form,
    .login-footer {
        max-width: 100%;
    }

    .login-footer {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
} 