body {
    background-color: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    margin: 20px;
}

.auth-logo {
    max-height: 100px;
    margin-bottom: 30px;
}

.form-control {
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid #E5E7EB;
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
    border-color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.auth-header h2 {
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-light);
    margin-bottom: 30px;
}
