/* ==========================
   404 PAGE
========================== */

.error-404 {
    padding: 100px 0;
    text-align: center;
}

.error-content {
    max-width: 700px;
    margin: auto;
}

.error-content h1 {
    font-size: 120px;
    line-height: 1;
    color: #2bb673;
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.error-content p {
    color: #666;
    margin-bottom: 35px;
    font-size: 18px;
}

.error-content .search-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.error-content input[type="search"] {
    width: 350px;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.error-content input[type="submit"],
.error-content button {
    padding: 14px 22px;
    border: none;
    background: #2bb673;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.error-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.error-buttons a {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    transition: .3s;
}

.btn-primary {
    background: #2bb673;
    color: #fff;
}

.btn-primary:hover {
    background: #23965f;
}

.btn-secondary {
    border: 1px solid #2bb673;
    color: #2bb673;
}

.btn-secondary:hover {
    background: #2bb673;
    color: #fff;
}