﻿.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
    background-color: #f8f9fa;  Cor de fundo suave 
}

.error-card {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    max-width: 500px;
    width: 100%;
}

.icon-area {
    margin-bottom: 1.5rem;
    color: #dc3545;  Vermelho Bootstrap 
}

.error-icon {
    width: 64px;
    height: 64px;
}

.error-code {
    font-size: 1.2rem;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.error-title {
    font-size: 2rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 1rem;
}


.actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}
@media (max-width: 576px) {
    .error-card {
        padding: 2rem;
    }

    .error-title {
        font-size: 1.5rem;
    }
}
