/* 404 Page */
.error-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #bad2e5;
    text-align: center;
    padding: 20px;
}

.error-404__inner {
    background: #fff;
    padding: 48px 32px;
    border-radius: 12px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.error-404__code {
    font-size: 64px;
    font-weight: bold;
    color: #2f7ed8;
    margin-bottom: 8px;
}

.error-404__title {
    font-size: 22px;
    margin-bottom: 16px;
}

.error-404__text {
    font-size: 16px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.6;
}

.error-404__btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2f7ed8;
    color: #fff;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.error-404__btn:hover {
    background-color: #1f5fb5;
    transform: translateY(-2px);
    color: #fff;
}