/* Auth Pages Custom Styling (Login/Register) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body.login-page,
body.register-page {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    font-family: 'Inter', sans-serif !important;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box,
.register-box {
    width: 400px !important;
}

.login-logo a,
.register-logo a {
    color: #fff !important;
    font-weight: 700;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-radius: 16px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    overflow: hidden;
}

.card-body {
    padding: 2.5rem !important;
}

.login-box-msg,
.register-box-msg {
    font-size: 1.1rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 1.5rem !important;
}

.input-group {
    margin-bottom: 1.25rem !important;
}

.form-control {
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
    padding: 1.2rem 1rem !important;
    height: auto !important;
    font-size: 1rem !important;
    background-color: #f8fafc !important;
    transition: all 0.2s ease;
}

.form-control:focus {
    background-color: #fff !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.input-group-text {
    border-radius: 0 8px 8px 0 !important;
    border: 1px solid #e2e8f0 !important;
    border-left: none !important;
    background-color: #f8fafc !important;
    color: #94a3b8;
}

.form-control:focus+.input-group-append .input-group-text {
    border-color: #3b82f6 !important;
    background-color: #fff !important;
    color: #3b82f6;
}

.icheck-primary label {
    color: #64748b;
    font-weight: 400;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.4);
}

.mb-0 a {
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mb-0 a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* SweetAlert Customization for Auth */
.swal2-popup {
    border-radius: 16px !important;
    font-family: 'Inter', sans-serif !important;
}