/* css/login.css */
:root {
    --discord-color: #5865F2;
    --discord-hover: #4752C4;
    --bg-dark: #0f111a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    height: 100%;
    color: var(--text-primary);
    overflow: hidden;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: radial-gradient(circle at top right, #1a237e, transparent),
        radial-gradient(circle at bottom left, #311b92, transparent);
}

.login-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo-img {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.2));
}

.logo h1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--discord-color);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px 0 rgba(88, 101, 242, 0.39);
}

.discord-btn img {
    height: 20px;
    margin-right: 12px;
}

.discord-btn:hover {
    background: var(--discord-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.23);
}

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

.footer-info {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .login-card {
        padding: 2rem;
    }
}