/*======= Not Found =======*/
.not-found {
    .not-found-title {
        font-size: 42px;

        @include respond-below(md) {
            font-size: 32px;
        }
    }

    .not-found-content {
        form {
            position: relative;

            input {
                width: 100%;
                padding: 0 80px 0 30px;
                height: 60px;
            }

            button {
                position: absolute;
                right: 0;
                top: 0;
                width: 70px;
                height: 60px;
                font-size: 18px;
                border: 0;
                padding: 0;
                border-radius: 0;
            }
        }
    }
}

.error-404 {
    padding: 100px 0;

    .error-content {
        text-align: center;

        .error-img {
            margin-bottom: 40px;
        }

        .title {
            font-size: 40px;
            margin: 0 0 20px;

            @include respond-below(md) {
                font-size: 32px;
            }
        }

        p {
            font-weight: 500;
            margin: 0;
        }

        .error-btn {
            display: inline-flex;
            align-items: center;
            margin-top: 20px;
            padding: 18px 25px;
            font: {
                size: 16px;
                weight: 500;
            }
            text: {
                transform: capitalize;
                decoration: none;
            }
            line-height: 1;
            border-radius: 5px;
            color: $color-white;
            background-color: $color-primary;
            transition: 0.3s;

            i {
                margin-left: 10px;
            }

            &:hover {
                background-color: $color-secondary;
                color: $color-white;
            }
        }
    }
}

.header-on-content {
    .error-404 {
        padding: 180px 0 100px;
    }
}
