:root {
    --primary-gradient: linear-gradient(135deg, #b69d5c 0%, #8a733f 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body.login-page {
    font-family: 'Outfit', sans-serif;
    background: radial-gradient(circle at top right, #1a1c23, #0a0b0e);
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
}

/* Animated Background Elements */
.bg-blob {
    position: fixed;
    width: 600px;
    height: 600px;
    background: var(--primary-gradient);
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    animation: float 25s infinite alternate;
}

@keyframes float {
    from {
        transform: translate(-20%, -20%);
    }

    to {
        transform: translate(20%, 20%);
    }
}

/* Auth Cards */
.login-card,
.registration-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
}

.login-card {
    padding: 40px;
}

.registration-card {
    padding: 25px 30px;
}

/* .login-card:hover {
    transform: translateY(-5px);
} */

/* Header & Logo */
.brand-logo {
    margin-bottom: 24px;
    filter: drop-shadow(0 0 10px rgba(78, 115, 223, 0.3));
}

.login-card .brand-logo {
    width: 100px;
}

.registration-card .brand-logo {
    width: 70px;
    margin-bottom: 15px;
}

.login-header h2,
.header h2 {
    color: #ffffff;
    font-weight: 700;
}

.login-header h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.header h2 {
    font-size: 1.35rem;
    margin-bottom: 2px;
}

.login-header p,
.header p {
    color: rgba(255, 255, 255, 0.5);
}

.login-header p {
    margin-bottom: 32px;
}

.header p {
    margin-bottom: 15px;
    font-size: 0.85rem;
}

/* Form Controls */
.form-floating>.form-control,
.form-control {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    color: #ffffff !important;
    border-radius: 12px;
}

.form-floating>.form-control:focus,
.form-control:focus {
    background: rgba(0, 0, 0, 0.3);
    border-color: #b69d5c;
    box-shadow: 0 0 0 4px rgba(182, 157, 92, 0.1);
}

.form-floating>label {
    color: rgba(255, 255, 255, 0.4);
}

/* Buttons */
.btn-login,
.btn-register {
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-login {
    padding: 14px;
    margin-top: 10px;
}

.btn-login:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px -5px rgba(78, 115, 223, 0.4);
    color: white;
}

.btn-register {
    padding: 12px;
    margin-top: 5px;
}

.btn-register:hover {
    box-shadow: 0 8px 15px rgba(78, 115, 223, 0.3);
    transform: translateY(-2px);
    color: white;
}

/* Links */
.register-link,
.back-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: block;
    text-align: center;
    transition: color 0.2s;
}

.register-link {
    font-size: 0.9rem;
    margin-top: 24px;
}

.back-link {
    font-size: 0.85rem;
    margin-top: 15px;
}

.register-link:hover,
.back-link:hover {
    color: #b69d5c;
}

.register-link strong,
.back-link strong {
    color: #b69d5c;
}

/* Select Control specific to Registration */
select.form-control {
    height: calc(3.5rem + 2px);
    padding: 0.75rem !important;
    appearance: auto;
}

select.form-control option {
    background-color: #1a1c23;
    color: #ffffff;
}

/* Loader */
.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #0f1014;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}