/* CSS pour le template auth-required.php */

.igloups-auth-required {
    max-width: 500px;
    margin: 2rem auto;
    text-align: center;
}

.igloups-auth-actions {
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.igloups-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.igloups-btn--primary {
    background-color: #0073aa;
    color: white;
}

.igloups-btn--primary:hover {
    background-color: #005a87;
    color: white;
}

.igloups-btn--secondary {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

.igloups-btn--secondary:hover {
    background-color: #e0e0e0;
    color: #333;
}

.igloups-auth-note {
    margin-top: 1rem;
    color: #666;
}