﻿.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 20px;
    margin-top: -10vh;
}

.error-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.error-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 20px;
}

.error-message {
    font-size: 2rem;
    color: #555555;
    margin-bottom: 30px;
}

.error-link {
    font-size: 2.1rem;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

    .error-link:hover {
        color: #2980b9; 
    }

.error-container a {
    display: inline-block;
    margin-top: 10px;
}