/* Scope Everything under .auth-scope */
.auth-scope {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    background: #0f172a;
    /* Dark Elegant Background */
}

/* Background Animation */
.auth-scope .background-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 100%);
    z-index: 1;
}

.auth-scope .login-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.auth-scope .login-header h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.auth-scope .login-header h2 span {
    color: #38bdf8;
    /* Blue Accent */
}

.auth-scope .login-header p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 35px;
}

.auth-scope .brand-icon {
    width: 60px;
    height: 60px;
    background: #38bdf8;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    border-radius: 15px;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

/* Floating Label Inputs */
.auth-scope .input-group {
    position: relative;
    margin-bottom: 30px;
    text-align: left;
}

.auth-scope .input-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #334155;
    padding: 10px 0;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.auth-scope .input-group label {
    position: absolute;
    left: 0;
    top: 10px;
    color: #64748b;
    pointer-events: none;
    transition: 0.3s ease all;
}

.auth-scope .input-group input:focus~label,
.auth-scope .input-group input:not(:placeholder-shown)~label {
    top: -15px;
    font-size: 12px;
    color: #38bdf8;
}

.auth-scope .input-group .bar {
    position: relative;
    display: block;
    width: 100%;
}

.auth-scope .input-group .bar:before {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0;
    position: absolute;
    background: #38bdf8;
    transition: 0.3s ease all;
    left: 0;
}

.auth-scope .input-group input:focus~.bar:before {
    width: 100%;
}

/* Login Button */
.auth-scope .login-btn {
    width: 100%;
    padding: 14px;
    background: #38bdf8;
    border: none;
    border-radius: 12px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    margin-top: 10px;
}

.auth-scope .login-btn:hover {
    background: #7dd3fc;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(56, 189, 248, 0.3);
}

.auth-scope .footer-note {
    margin-top: 30px;
    color: #475569;
    font-size: 12px;
}