:root {
    --login-glow-main: rgba(1, 62, 93, 0.55); /* #013E5D - أفتح */
    --login-glow-alt: rgba(14, 116, 144, 0.4); /* لون وسيط بين #0F172A و #0EA5E9 */
}

body {
    background: radial-gradient(circle, var(--login-glow-main), transparent 60%) center center,
        radial-gradient(circle, var(--login-glow-alt), transparent 70%) center center !important;
    background-color: #0f172a !important; /* base fallback */
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

/* body {
    background: linear-gradient(135deg, #e0f7fa, #e3f2fd, #ffffff) !important;
    background-attachment: fixed;
    background-size: cover;
} */
/* 
.pace-done {
    position: relative;
    height: 100%;
    background: linear-gradient(120deg, #0f172a, #1e3a8a, #0ea5e9);
    background-size: 200% 200%;
    animation: backgroundShift 10s ease-in-out infinite;
    overflow: hidden;
}

.pace-done::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(3, 169, 244, 0.35), transparent 70%);
    filter: blur(90px);
    z-index: 1;
}

.pace-done::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
    filter: blur(100px);
    z-index: 1;
}

@keyframes backgroundShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
*/
/* body {
    background: yellow !important;
} */
.custom-login-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.75),
        rgba(240, 248, 255, 0.75)
    ) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    padding: 2rem !important;
}

.custom-login-card input {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid #b2dbf7 !important;
    color: #0f172a !important;
    font-weight: 500 !important;
    border-radius: 0.75rem !important;
    transition: all 0.3s ease-in-out !important;
}

.custom-login-input:focus {
    border-color: #00bcd4 !important;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.25) !important;
}

.custom-login-button {
    background: linear-gradient(to right, #00bcd4, #2196f3) !important;
    color: white !important;
    font-weight: 600 !important;
    border-radius: 2rem !important;
    box-shadow: 0 6px 18px rgba(33, 150, 243, 0.4) !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
}

.custom-login-button:hover {
    background: linear-gradient(to right, #0097a7, #1976d2) !important;
    transform: translateY(-1px) !important;
}

.custom-login-title {
    color: #0f172a !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
}

.custom-login-subtitle {
    color: #64748b !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
}

.custom-login-register {
    color: #607d8b !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

.custom-login-register:hover {
    color: #2196f3 !important;
    text-decoration: underline !important;
}
