input {
	width: 100%;
	background: #F8FBFD;
	border-radius: 2px;
	padding: 14px;
	border: none;
	outline: none;
	color: #000;
	font-size: 16px;
	line-height: 18.75px;
}

input[type='submit'] {
	background: #1D71B8;
	text-align: center;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	transition: .3s;
}

button[type="submit"]{
	background: #1D71B8;
	text-align: center;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	transition: .3s;
	border: none;
	padding: 14px;
	width: 100%;
	border-radius: 2px;
	font-size: 16px;
    line-height: 18.75px;
}

input[type='submit']:hover {
	background: #E5414E;
}

a {
	color: #000;
	text-decoration: none;
	transition: .3s;
}

.row{
    margin-left: -5px;
    margin-right: -5px;
    display: flex;
    flex-wrap: wrap;
}

.col-6{
    flex: 0 0 50%;
    width: 50%;
    padding-left: 5px;
    padding-right: 5px;
}

.colfull{
	flex: 0 0 100%;
    width: 100%;
}