.search-line {
	position: relative;
}

.search-input {
	width: 100%;
    color: #333;
    background: #fff;
    border: 1px solid #e6e6e6;
    box-shadow: none;
    border-radius: 2px;
    transition: .2s linear;
    outline: 0;
    font-size: 16px;
    padding: 22px 240px 22px 25px;
    font-family: 'GOSTUI2';
}

.search-input:hover {
	border-color: #0d49cd;
}

.search-input:focus {
	box-shadow: 0 3px 30px 0px rgb(1 46 154 / 10%);
}

.search-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    bottom: 10px;
    height: auto;
    width: 190px;
    color: #fff;
    background-color: #0d49cd;
    border-color: #0d49cd;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    min-width: 150px;
    transition: all .2s linear;
    padding: 12px 25px 16px 25px;
    font-size: 16px;
    font-family: 'GOSTUI2';
}

.search-btn:hover {
	background-color: #0a389d;
    border-color: #0a389d;
}


.form-sub-title {
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 16px;
	color: #14171e;
}