body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #095174;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #0f2030;
    background: linear-gradient(10deg, rgba(17, 44, 65, 0.85), rgba(8, 17, 25, 0.95)), url('/resources/img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

a {
    transition: all 0.2s ease;
    text-decoration: none;
}

.error-wrapper {
    color: rgba(255, 255, 255, 0.85);
    width: 100%;
    max-width: 500px;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.error-wrapper img {
    width: 40%;
    height: auto;
    margin-bottom: 30px;
    opacity: 0.8;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.error-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
}

.error-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.6;
}

.login-footer {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-top: 40px;
    letter-spacing: 0.5px;
}

.login-footer a {
    color: rgba(255, 255, 255, 0.4);
}

.login-footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-outline-light:hover {
    color: #0f2030;
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

.mobile {
    height: 800px;
}

@media (max-width: 1500px) {
    .mobile {
        height: 500px;
    }

    .error-wrapper {
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .error-code {
        font-size: 90px;
    }

    .error-title {
        font-size: 22px;
    }
}