/* Custom styles for Auth and Account panels */
#auth-modal {
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.auth-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    outline: none;
    background: #f8fafc;
    font-weight: 500;
}

.auth-input:focus {
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.auth-btn {
    width: 100%;
    padding: 0.875rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 1rem;
    color: white;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.auth-btn:active {
    transform: translateY(0);
}

.project-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.animate-bounce-slow {
    animation: bounce-slow 2s infinite;
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

#entry-login-card.active {
    opacity: 1 !important;
    transform: scale(1) translateY(0) !important;
    pointer-events: auto !important;
}

/* Entry Login Overlay */
#entry-login-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../backgrounds/1.jpg') center/cover no-repeat;
    z-index: 1000;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

#entry-login-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.28), rgba(120, 53, 15, 0.18)), radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.28) 100%);
    pointer-events: none;
}

.login-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.22);
}

.login-tab {
    position: relative;
    padding: 0.75rem 1.5rem;
    font-weight: 900;
    font-size: 0.875rem;
    color: #000000;
    opacity: 0.5;
    transition: all 0.3s;
}

.login-tab.active {
    color: #000000;
    opacity: 1;
}

.login-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 3px;
    background: #000000;
    border-radius: 9999px;
}
