/* Page de connexion - Nuance RP */
body {
    background: #191a1c;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-container {
    max-width: 480px;
    width: 100%;
}

.login-box {
    background: #ffffff;
    border-radius: 3px;
    padding: 60px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.brand {
    color: #191a1c;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.brand-accent {
    color: #f4c600;
}

.subtitle {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.divider {
    height: 1px;
    background: #e0e0e0;
}

.welcome-section {
    margin-bottom: 20px;
}

.welcome-title {
    color: #1b1a1a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.welcome-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.discord-btn {
    background: #f4c600;
    color: #1b1a1a;
    border: none;
    padding: 16px 32px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
    letter-spacing: 0.3px;
}

.discord-btn:hover {
    background: #d4a700;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 199, 0, 0.3);
}

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

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.info-item {
    text-align: center;
}

.info-label {
    color: #1b1a1a;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    color: #666;
    font-size: 13px;
}

.footer-note {
    margin-top: 30px;
    text-align: center;
    color: #999;
    font-size: 12px;
}

@media (max-width: 576px) {
    .login-box {
        padding: 40px 30px;
    }

    .brand {
        font-size: 28px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
