/* resources/css/auth.css */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

:root {
    --brand-red: #E21C21;
    --dark-bg: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-body: #f8fafc;
}

body { 
    height: 100vh; 
    overflow: hidden; 
    background-color: var(--bg-body); 
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-wrapper { 
    display: flex; 
    width: 100%;
    height: 100%;
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-section {
    flex: 1.5; 
    position: relative;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
    z-index: 1;
}

.top-brand {
    position: absolute;
    top: 50px; left: 60px;
    font-size: 32px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 20;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.top-brand span { color: var(--brand-red); }

.hero-content { 
    position: relative; 
    z-index: 10; 
    border-left: 5px solid var(--brand-red);
    padding-left: 40px;
}

.hero-text h1 { 
    font-size: 64px; 
    font-weight: 800; 
    line-height: 1; 
    margin-bottom: 15px; 
    color: white; 
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.hero-text span { 
    color: var(--brand-red);
    font-family: 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    display: block;
    margin-top: 5px;
    text-shadow: none; 
    background: rgba(255,255,255,0.9); 
    display: inline-block;
    padding: 0 10px;
    transform: skewX(-10deg);
}

.hero-text p { 
    font-size: 18px; 
    color: white; 
    max-width: 500px; 
    line-height: 1.6; 
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    margin-top: 20px;
}

.form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    background-color: white;
    position: relative;
    padding-top: 40px;
}

.form-card { width: 100%; max-width: 400px; padding: 20px 40px; margin-top: auto; margin-bottom: auto;}

.login-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.tab-btn.active {
    color: var(--brand-red);
    border-bottom: 3px solid var(--brand-red);
}

.logo-container {
    width: 70px; height: 70px;
    background: var(--brand-red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 10px 20px rgba(226, 28, 33, 0.3);
}

.logo-container img { width: 35px; height: auto; filter: brightness(0) invert(1); }

.brand-header { text-align: center; margin-bottom: 25px; }
.brand-header h2 { font-size: 24px; color: var(--text-main); font-weight: 700; }
.brand-header p { color: var(--text-muted); font-size: 14px; }

.input-block { margin-bottom: 15px; }
.input-block label { 
    display: block; font-size: 12px; font-weight: 700; color: var(--text-main); 
    text-transform: uppercase; margin-bottom: 5px; 
}

.input-field {
    width: 100%; padding: 12px 15px; background-color: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: 6px; font-size: 14px; color: var(--text-main); transition: 0.3s;
}

.input-field:focus {
    outline: none; border-color: var(--brand-red); background-color: white;
    box-shadow: 0 0 0 3px rgba(226, 28, 33, 0.1);
}

.submit-btn {
    width: 100%; padding: 14px; background: var(--brand-red); color: white; border: none;
    border-radius: 6px; font-size: 14px; font-weight: 700; text-transform: uppercase;
    cursor: pointer; transition: 0.3s; margin-top: 10px;
    box-shadow: 0 4px 10px rgba(226, 28, 33, 0.2);
}

.submit-btn:hover { background-color: #c4181c; transform: translateY(-2px); }

.divider {
    display: flex; align-items: center; text-align: center; margin: 20px 0; color: #94a3b8; font-size: 12px;
}
.divider::before, .divider::after {
    content: ''; flex: 1; border-bottom: 1px solid #e2e8f0;
}
.divider span { padding: 0 10px; }

.google-btn {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 12px; background-color: white; border: 1px solid #e2e8f0; border-radius: 6px;
    color: #1e293b; font-weight: 600; font-size: 14px; cursor: pointer; transition: 0.3s;
}

.google-btn:hover { background-color: #f1f5f9; border-color: #cbd5e1; }

.form-wrapper { display: none; }
.form-wrapper.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.forgot-pass { color: var(--brand-red); text-decoration: none; font-weight: 600; font-size: 12px; display: block; text-align: right; margin-top: 5px;}

@media (max-width: 900px) {
    .hero-section { display: none; }
    .form-section { width: 100%; padding: 0; background: white; }
    .form-card { padding: 20px; max-width: 100%; height: 100vh; display: flex; flex-direction: column; justify-content: center; }
    .top-brand { display: block; color: var(--brand-red); top: 20px; left: 20px; font-size: 24px; z-index: 100; text-shadow: none;}
}