/* 
 * BIEN Payment Solutions - Authentication Pages Custom Styles
 * Enhanced styling for login, registration, and auth pages
 */

/* Extend the colored background to cover 3/4 of the viewport */
.auth-one-bg-position {
    height: 75vh !important;
    min-height: 50px;
}

/* Responsive adjustments for mobile */
@media (max-width: 767.98px) {
    .auth-one-bg-position {
        height: 70vh !important;
        min-height: 500px;
    }
}

/* Ensure proper z-index layering */
.auth-page-content {
    position: relative;
    z-index: 10;
}

/* Enhanced card styling for auth pages */
.auth-page-wrapper .card {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: none;
}

/* Smooth transitions for interactive elements */
.auth-page-wrapper .btn {
    transition: all 0.3s ease;
}

.auth-page-wrapper .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

