.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 2rem;
}

.error-content {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.error-content h1 {
    font-size: 2.5rem;
    color: #1D3354;
    margin-bottom: 1rem;
}

.error-content p {
    color: #666;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.error-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1D3354;
    color: white;
}

.btn-primary:hover {
    background-color: #2a4875;
}

.btn-secondary {
    background-color: #e9ecef;
    color: #1D3354;
}

.btn-secondary:hover {
    background-color: #dde2e6;
}

.error-actions i {
    margin-right: 0.5rem;
}
