/*
Theme Name: Optilium Child Theme 
Theme URI:  https://optilium.co.uk/
Author:     WPServeur
Author URI: https://www.wpserveur.net
Template:   astra
Version:    1.0
License:    GNU General Public License v2 or later
*/


/* FORM CSS */
.brevo_wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
	font-family: "lato";
}
.brevo_row{
	display: flex;
	gap: 10px;
}
.brevo_col_6,
.brevo_col_12{
	width: 100%;
}
.brevo_wrapper p{
	margin-bottom: 0;
}
.brevo_wrapper input[type="text"],
.brevo_wrapper input[type="email"]{
	width: 100%;
	border: 2px solid #45AE91;
}
.brevo_wrapper input[type="submit"]{
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	background-color: #4B88BF;
	border-radius: 3px;
	transition: all 0.3s;
}
.brevo_wrapper input[type="submit"]:hover{
	background-color: #45AE91 !important;
}

@media all and (min-width: 768px){
	.brevo_col_6{
		width: 50%;
	}
}