.cfs-branch-form{
    display: flex;
    gap: 10px;
}

.cfs-branch-form input{
    flex: 1;
	color: #000;
	font-family: "Roboto", Sans-serif;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.4em;
    padding: 13px 15px !important;
    border: 1px solid #113574 !important;
    border-radius: 0 !important;
	background: #fff;
	outline: none;
}

.cfs-branch-form button{
	display: inline-block;
	font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.2px;
    background-color: #113574;
    color: #FFFFFF;
    border-radius: 6px;
	border: none;
    padding: 15px 40px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.cfs-branch-form button:hover{
    background: #6F8FB8;
}

.branch-result-title{
	color: #000;
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.2em;
    margin: 20px 0 0;
}

.cfs-branch-error{
	color: #FF0000;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.8em;
	margin: 10px 0 0;
}


@media screen and (max-width: 767px) {
	
	.cfs-branch-form{
		gap: 15x;
		flex-direction: column;
	}

	.cfs-branch-form input{
		flex: initial;
		padding: 10px 15px !important;
	}

	.cfs-branch-form button{
		padding: 12px 30px;
	}

	.branch-result-title{
		font-size: 18px;
	}
}



