html, body {
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: #303134;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

body::after {
    content: "";
    background-color: #303134;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .7;
    pointer-events: none;
}

.logo_img {
    text-align: center;
}

.logo_img svg {
    width: 300px;
}

.logo_img svg path {
    fill: #e8eaed;
}

.input_container {
    display: block;
    position: relative;
    z-index: 1000;
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

input[type='search'] {
    border-radius: 50px;
    min-height: 50px;
    max-width: 600px;
    width: 100%;
    margin-bottom: 12px;
    background: #4d5156;
    color: #e8eaed;
    display: block;
    padding-left: 20px;
    font-size: 16px;
}

input[type='search']:focus {
    background: #303134;
    box-shadow: 0 2px 8px 1px rgba(64, 60, 67, .24);
}

input[type='search']:focus-visible {
    box-shadow: none;
    outline: none;
}

input[type = 'search']::-webkit-search-cancel-button{
	position: absolute;
	right: 20px;
}


input[type='button'] {
    background-color: #303134;
    border: 1px solid #303134;
    color: #e8eaed;
    margin: 11px 4px;
    padding: 10px 18px;
    line-height: 27px;
    height: 48px;
    min-width: 54px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    border-radius: 8px;
    font-optical-sizing: none;
    font-size: 24px;
    font-weight: 400;
}

    

@media screen and (min-width: 768px) {
    input[type='search'] {
        width: 600px;
    }
    .input_container {
        width: unset;
    }

    input[type='button'] {
        font-size: 14px;
        padding: 0 16px;
        height: 36px;
    }
}