.auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.auth-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.pexels.com/photos/7130498/pexels-photo-7130498.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.auth-container {
    width: 100%;
    max-width: 500px;
    z-index: 1;
}

.auth-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-lg);
    overflow: hidden;
}

.auth-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.auth-logo .logo {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.auth-logo h1 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 0;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.auth-links {
    text-align: center;
    margin-top: var(--spacing-md);
}

.auth-links p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .auth-card {
        padding: var(--spacing-md);
    }
    
    .auth-logo .logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .auth-logo h1 {
        font-size: 1.5rem;
    }
}