/* Main Content Component Styles */
.main {
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

/* Section principale */
.main-section {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.main-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.main-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Groupe de boutons */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Boutons */
.btn-primary {
    width: 100%;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    width: 100%;
    background: white;
    color: #007bff;
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #007bff;
    color: white;
}