/* ==========================================================
   404 PAGE
========================================================== */

.nl-404-page{
    background:#f5f7fb;
    min-height:70vh;
    padding:70px 20px;
}

.nl-404-container{
    max-width:760px;
    margin:0 auto;
}

.nl-404-content{
    background:#fff;
    border-radius:20px;
    padding:70px 50px;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.nl-404-code{
    display:block;
    font-size:110px;
    line-height:1;
    font-weight:900;
    color:#d71920;
    margin-bottom:15px;
}

.nl-404-label{
    display:inline-block;
    background:#d71920;
    color:#fff;
    padding:6px 18px;
    border-radius:40px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:20px;
}

.nl-404-title{
    font-size:34px;
    line-height:1.3;
    margin-bottom:18px;
    color:#111;
}

.nl-404-description{
    font-size:18px;
    color:#666;
    line-height:1.8;
    max-width:620px;
    margin:0 auto 35px;
}

.nl-404-search-form{
    display:flex;
    gap:12px;
    justify-content:center;
    margin-bottom:35px;
    flex-wrap:wrap;
}

.nl-404-search-field{
    flex:1;
    min-width:260px;
    max-width:450px;
    padding:15px 18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    outline:none;
    transition:.25s;
}

.nl-404-search-field:focus{
    border-color:#d71920;
    box-shadow:0 0 0 4px rgba(215,25,32,.10);
}

.nl-404-search-submit{
    display:flex;
    align-items:center;
    gap:8px;
    background:#d71920;
    color:#fff;
    border:0;
    padding:15px 22px;
    border-radius:12px;
    cursor:pointer;
    transition:.25s;
    font-weight:700;
}

.nl-404-search-submit:hover{
    background:#b91419;
}

.nl-404-actions{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.nl-404-home-button,
.nl-404-back-button{
    text-decoration:none;
    border:none;
    cursor:pointer;
    padding:14px 24px;
    border-radius:12px;
    font-weight:700;
    transition:.25s;
}

.nl-404-home-button{
    background:#111;
    color:#fff;
}

.nl-404-home-button:hover{
    background:#000;
}

.nl-404-back-button{
    background:#ececec;
    color:#222;
}

.nl-404-back-button:hover{
    background:#ddd;
}

@media(max-width:768px){

    .nl-404-content{
        padding:45px 25px;
    }

    .nl-404-code{
        font-size:80px;
    }

    .nl-404-title{
        font-size:27px;
    }

    .nl-404-description{
        font-size:16px;
    }

}