/* Modern Login Page Styles */
.auth-shell {
    display: flex;
    min-height: calc(100vh - 80px);
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: radial-gradient(circle at top left, rgba(141, 47, 77, 0.05), transparent),
                radial-gradient(circle at bottom right, rgba(183, 132, 122, 0.05), transparent);
}

.auth-card-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    width: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.auth-visual-panel {
    background: linear-gradient(rgba(141, 47, 77, 0.8), rgba(111, 35, 60, 0.9)), 
                url('https://images.unsplash.com/photo-1583939003579-730e3918a45a?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-visual-panel h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.auth-visual-panel p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.auth-feature-list {
    display: grid;
    gap: 20px;
}

.auth-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.auth-feature-item i {
    font-size: 1.5rem;
    color: #b7847a;
}

.auth-form-panel {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form-panel h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--app-ink);
}

.auth-form-panel p {
    color: var(--app-muted);
    margin-bottom: 30px;
}

/* Form Controls */
.auth-form-panel .form-group {
    margin-bottom: 20px;
}

.auth-form-panel label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--app-ink);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.auth-form-panel input:not([type="checkbox"]) {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fdfaf7;
    font-weight: 600;
    transition: all 0.3s;
}

.auth-form-panel input:focus {
    border-color: var(--app-sea);
    background: white;
    box-shadow: 0 0 0 4px rgba(141, 47, 77, 0.1);
    outline: none;
}

.auth-btn-primary {
    background: linear-gradient(135deg, var(--app-sea), var(--app-sea-deep));
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(141, 47, 77, 0.2);
}

.auth-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(141, 47, 77, 0.3);
}

.auth-footer-links {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

.auth-footer-links a {
    color: var(--app-sea);
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 991px) {
    .auth-card-modern {
        grid-template-columns: 1fr;
    }
    .auth-visual-panel {
        display: none;
    }
    .auth-form-panel {
        padding: 40px 30px;
    }
}
