/*
 * 404 Error Page
 */
@import "../../font/ukij.css";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    object-fit: cover;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
    border: 0;

}

#error {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

#error .error {
    max-width: 500px;
    border-radius: 10px;
    padding-bottom: 30px;
}

#error .error img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}


#error .error .error-code {
    font-size: 100px;
    font-weight: 700;
    color: #41ad31;
    margin-top: -80px;
}

#error .error .error-message {
    font-size: 16px;
    color: #333;
    text-align: center;
    line-height: 1.5;
    padding-bottom: 20px;
}

#error .error .error-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 10px;

}

#error .error .error-actions .btn {
    margin: 0 10px;
    padding: 10px 20px;
    border-radius: 5px;
    background: #41ad31;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #41ad31;
}

.btn-default {
    border: 1px solid #41ad31;
    color: #41ad31 !important;
    background: none !important;
}

.btn-default:hover {
    background: #2e9c24 !important;
    color: #fff !important;
}

.btn.btn-primary:hover {
    border: 1px solid #41ad31;
    color: #41ad31 !important;
    background: none !important;
}

@media (max-width: 768px) {
    #error .error {
        max-width: calc(100% - 40px);
        margin: 0 20px;
    }
}