:root {
    --rc-bg: #0b0b12;
    --rc-panel: #14141f;
    --rc-input: #1c1c2b;
    --rc-accent: #7367f0;
    --rc-text-muted: #8e8ea1;
}

body { 
    background-color: var(--rc-bg); 
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    overflow: hidden;
}

.auth-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.auth-visual {
    flex: 1;
    background: radial-gradient(circle at 30% 50%, #1e1e2e 0%, #0b0b12 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    z-index: 3;
}

.auth-illustration {
    max-width: 60%;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.auth-panel {
    width: 600px;
    background: var(--rc-panel);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    border-left: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 10;
}

.brand-logo {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4rem;
}

.brand-logo span { color: var(--rc-accent); }

.auth-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.auth-subtitle {
    color: var(--rc-text-muted);
    font-size: 16px;
    margin-bottom: 2.5rem;
}

.form-label {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.form-control {
    background: var(--rc-input) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
}

.form-control:focus {
    border-color: var(--rc-accent) !important;
    box-shadow: 0 0 0 3px rgba(115, 103, 240, 0.15) !important;
}

.btn-login {
    background: #7367f0 !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 14px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(115, 103, 240, 0.4) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    margin-top: 1.5rem;
}

.btn-login:hover {
    background: #8075ff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(115, 103, 240, 0.6) !important;
    color: #ffffff !important;
}

.btn-login:disabled {
    background: #5a52bd !important;
    opacity: 0.8 !important;
}

.footer-text {
    text-align: center;
    margin-top: 2rem;
    color: var(--rc-text-muted);
}

.footer-text a {
    color: var(--rc-accent);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 992px) {
    .auth-visual { display: none; }
    .auth-panel { width: 100%; padding: 40px; }
}