/* Auth Page Styles - Bootstrap 5 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.auth-body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

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

.auth-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/Back.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(96, 165, 250, 0.3) 100%);
    z-index: -1;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-card-body {
    padding: 3rem;
}

.auth-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.auth-logo-text {
    color: #3b82f6;
    font-weight: 700;
    margin-bottom: 1rem;
}

.auth-header h3 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #6c757d;
    font-size: 0.95rem;
}

.auth-form .form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.auth-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.auth-form .input-group-text {
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 10px 0 0 10px;
}

.auth-form .input-group .form-control {
    border-left: none;
    border-radius: 0 10px 10px 0;
}

.auth-form .btn-primary {
    background: #3b82f6;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.auth-form .btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.auth-form .btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
}

.auth-form .form-check-label {
    color: #495057;
    font-size: 0.9rem;
}

.auth-form a {
    color: #3b82f6;
    font-weight: 500;
    transition: all 0.3s ease;
}

.auth-form a:hover {
    color: #2563eb;
}

.auth-form .back-to-login {
    color: #6c757d;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.auth-form .back-to-login:hover {
    color: #3b82f6;
    text-decoration: none;
}

.auth-form .back-to-login i {
    transition: transform 0.3s ease;
}

.auth-form .back-to-login:hover i {
    transform: translateX(-3px);
}

.auth-form .form-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
    margin-top: 1.5rem;
}

/* Toast Styles */
.toast-container {
    z-index: 9999;
}

.toast {
    min-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast-header {
    border-bottom: none;
    padding: 0.75rem 1rem;
    border-radius: 10px 10px 0 0;
}

.toast-body {
    padding: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-card-body {
        padding: 2rem 1.5rem;
    }
    
    .auth-logo {
        max-width: 120px;
    }
}


