
/* ==========================================================================
   PAGE D'ERREUR STYLÉE
   ========================================================================== */
.error-page-container {
    min-height: 60vh;
    display: flex;
    padding: 100px 5px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-card {
    background-color: var(--color-light-bg);
    padding: 50px 30px;
    border-radius: 8px;
    border-top: 5px solid var(--color-secondary-red);
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 90px;
    color: var(--color-primary-blue);
    font-weight: 700;
    line-height: 1;
}

.error-title {
    font-size: 24px;
    color: var(--color-secondary-red);
    margin-bottom: 15px;
}

.error-text {
    color: var(--color-muted-text);
    margin-bottom: 25px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}
