.auth-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}

.auth-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.auth-card .card-body {
    padding: 2rem;
}

.auth-title {
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.auth-form .form-control {
    border-radius: 5px;
    padding: 0.75rem 1rem;
}

.auth-form .btn-primary {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
}

.auth-link {
    color: #007bff;
    text-decoration: none;
}

.auth-link:hover {
    color: #0056b3;
    text-decoration: underline;
} 