/* GOLD & GLASS THEME FOR LOGIN & REGISTER */

:root {
    --primary-dark: #0a1628;
    --secondary-dark: #0f1d32;
    --gold: #ffd700;
    --gold-glow: rgba(255, 215, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    --text-muted: #a0aec0;
}

body.login-img {
    background: radial-gradient(circle at 50% 50%, #1a2d4a 0%, #0a1628 100%) !important;
    background-attachment: fixed !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Glowing Orbs */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15;
}

body::before {
    background: var(--gold);
    top: 10%;
    left: 10%;
    animation: float 15s infinite alternate;
}

body::after {
    background: #4a90e2;
    bottom: 10%;
    right: 10%;
    animation: float 20s infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.container-login100 {
    background: transparent !important;
}

.wrap-login100 {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    padding: 40px !important;
}

.wrap-login100::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.login100-form-title {
    color: var(--gold) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--gold-glow);
}

.wrap-input100 {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 10px !important;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.wrap-input100:focus-within {
    border-color: var(--gold) !important;
    box-shadow: 0 0 15px var(--gold-glow);
    background: rgba(255, 255, 255, 0.08) !important;
}

.input-group-text {
    background: transparent !important;
    border: none !important;
    color: var(--gold) !important;
}

.input100 {
    background: transparent !important;
    border: none !important;
    color: white !important;
}

.input100::placeholder {
    color: var(--text-muted) !important;
    opacity: 0.7;
}

.login100-form-btn {
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%) !important;
    border: none !important;
    color: #000 !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login100-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.4);
    filter: brightness(1.1);
}

.btn-outline-primary {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
    border-radius: 10px !important;
}

.btn-outline-primary:hover {
    background: var(--gold) !important;
    color: black !important;
}

.text-primary {
    color: var(--gold) !important;
}

.text-dark {
    color: white !important;
}

/* Custom Scrollbar for the glass effect */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}