.login-content {
    animation: fadeIn 0.8s ease-out;
    margin-top: 80px;
}

.login-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.3;
}

.welcome {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: #888888;
    margin-bottom: 0.5rem;
}

.brand-name {
    display: block;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    color: #ffffff;
}

.ai-text {
    color: #ff6b00;
    font-style: italic;
}

.login-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #888888;
    margin-bottom: 3rem;
}

.login-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-decoration: none;
}

.login-button:hover {
    border-color: #333333;
    background: #0f0f0f;
    transform: translateY(-2px);
}

.login-button:active {
    transform: translateY(0);
}

.login-button .icon {
    width: 20px;
    height: 20px;
}

.login-button.discord:hover {
    border-color: #5865F2;
}

.login-button.github:hover {
    border-color: #ffffff;
}



@media (max-width: 768px) {
    .login-title {
        font-size: 2.5rem;
    }
    
    .welcome {
        font-size: 1.2rem;
    }
    
    .login-subtitle {
        font-size: 1rem;
    }
    
    .login-options {
        max-width: 100%;
    }
}
