.auth-fluid {
    background: #020817;
}

/* ===== Animated Background Canvas ===== */
canvas {
    position: fixed;
    inset: 0;
    z-index: 2;
}

/* ===== Login Box with Animated Border ===== */
.login-box {
    position: relative;
    max-width: 546px;
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    margin: auto;
}

/* Rotating Neon Border */
.login-box::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: conic-gradient(#00fff2, #00b3ff, #00fff2, #00b3ff, #00fff2);
    animation: spin 20s linear infinite;
    z-index: -2;
}

.login-box::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #020817;
    border-radius: 16px;
    z-index: -1;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* ==== Content ==== */
h2 {
    margin-bottom: 25px;
    color: #00fff2;
    letter-spacing: 1px;
}

.input-group {
    position: relative;
    margin-bottom: 22px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    color: white;
    outline: none;
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 13px;
    color: #94a3b8;
    transition: .3s;
    pointer-events: none;
    background: transparent;
    padding: 0 4px;
}

.input-group input:focus+label,
.input-group input:valid+label {
    top: -8px;
    font-size: 12px;
    color: #00fff2;
}





.btn {
    border-radius: 5px;
}

.select2-container .select2-selection--single {
    border: 1px solid #dee2e600;
    background-color: #0d1120;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    color: #adb5b4;
}