/* Auth Stylesheet - Teq Academy (Modern Split Redesign) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0F4C45; /* Deep Teal */
    --primary-hover: #0a3631;
    --accent: #D4A017; /* Gold */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --white: #ffffff;
}

.auth-split-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 800px;
    width: 100%;
}

/* Left Side - Content & Branding */
.auth-sidebar {
    background: #08332f; 
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
}

@media (max-width: 991px) {
    .auth-split-wrapper {
        grid-template-columns: 1fr;
    }
    .auth-sidebar {
        display: none;
    }
}

.sidebar-content {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.sidebar-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.sidebar-content h1 span {
    color: var(--accent);
}

.sidebar-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
}

.stats-grid {
    display: flex;
    gap: 30px;
}

.stat-item h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

/* Right Side - Form */
.auth-main {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.auth-form-container {
    width: 100%;
    max-width: 420px;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 35px;
}

.auth-form-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
}

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

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(15, 76, 69, 0.05);
}

.input-icon-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #13695f;
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    color: var(--text-muted);
}

.form-footer a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.alert {
     padding: 12px 15px;
     border-radius: 8px;
     margin-bottom: 20px;
     font-size: 0.9rem;
}

