/* compact auth styles */
body.auth-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Inter', sans-serif;
}

.auth-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    max-width: 900px;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.auth-image {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)), url('../images/auth-bg.jpg') center/cover;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-image h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.auth-image p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.auth-form {
    padding: 40px 50px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 20px;
}

.auth-logo h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
}

.auth-logo span {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-title {
    text-align: center;
    margin-bottom: 25px;
}

.auth-title h2 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.auth-title p {
    color: #666;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.form-control {
    padding: 10px 14px;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 12px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .auth-image {
        display: none;
    }

    .auth-form {
        padding: 30px;
    }
}