/* Login Page Specific Styles */
.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    /* To contain pseudo-elements */
}

.login-card {
    background: rgba(0, 10, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 3rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 163, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 10;
}

.login-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.login-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--primary));
}

.login-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.login-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.login-form .form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.login-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.3);
}

.login-btn:hover {
    box-shadow: 0 0 25px rgba(0, 163, 255, 0.5);
}

/* New Registration Styles */
.neon-link {
    color: #00f3ff;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 1.5rem;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.neon-link:hover {
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.8), 0 0 20px rgba(0, 243, 255, 0.4);
    transform: translateY(-2px);
}

.hidden {
    display: none !important;
}

.section-transition {
    animation: fadeIn 0.5s ease-inst;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.waiting-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

    50% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
}