/* Arquivo de estilo para formulários */
.divFormularios {
	width: 100%;
}

.tituloFormulario {
	width: 66%;
	margin-left: 16%;
}

#divFormulario > .card {
	box-shadow: 0px 10px 30px rgb(0 0 80 / 20%);
	border-radius: 10px;
	padding-top: 25px;
}

.form-group-bom {
	display: flex;
    align-items: center;
}

.form-group-bom > fieldset {
	display: flex;
}

.form-left-bom {
	font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: -0.04em;
    color: #43434D;
    display: inline-block;
    width: 150px;
    float: left;
}

.form-left-bom-input {
	padding-top: 12px;
	margin-right: 10px;
}

.form-left-bom-groups {
	padding-top: 5px;	
	margin-right: 10px;
}

.form-group-bom > .form-right-bom {
	width: calc(100% - 160px);
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0;
    text-align: left;
}

.form-right-bom input, .form-right-bom select, .form-right-bom textarea {
	color: #747981;
    font-size: 15px;
    border-radius: 10px;
    border: thin;
    padding-left: 10px;
    padding-right: 10px;
    left: 0;
    right: 0;
    top: 0;
    background-color: #F2F2F2;
}

.hint-form-obrigatorio {
	font-size: 14px;
	float:right;
	color: red;
}

.btn-form {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 1.56rem 2.81rem;
    border-radius: 30px;
    line-height: 0;
    font-size: 0.75rem;
    background: #0B45E4;
}

.btnCorFundo02Form {
    text-transform: uppercase;
}

.btn.btnCorFundo02Form:hover {
    background-color: #127DB8 !important;
    outline: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.btn.btnCorFundo02Form:active {
    color: #fff !important;
    background-color: #127DB8 !important;
    outline: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #127DB8;
}

.custom-control-label {
    margin-left: 5px;
}

.texto-informativo-form {
    /* margin:0 auto; */
	width: 100%;
}

.texto-informativo-form img{
	max-width: 100%;
}

.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: #127DB8;
}

.custom-radio, .custom-checkbox {
    /* margin-left: 10px; */
}

.was-validated .form-check-custom-checkbox-require .form-check-input:invalid~.invalid-feedback {
    display: block;
}

.custom-control-input.is-valid~.custom-control-label, .was-validated .custom-control-input:valid~.custom-control-label {
	color: #212529;
}

.custom-control-input.is-valid~.custom-control-label::before, .was-validated .custom-control-input:valid~.custom-control-label::before {
	background-color: #dee2e6;
}

@-webkit-keyframes spin {
    from {-webkit-transform:rotate(0deg);}
    to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

#spin {
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #127DB8;
    width: 25px;
    height: 25px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;    
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
	margin-right: 11px;
    float: left;
}

@media (max-width: 767px) {	
	.form-group-bom {
		display: inline-block;
		width: 100%;
	}

	.form-group-bom > fieldset {
		display: inline-block;
	}
	
	.form-group-bom > fieldset > .form-left-bom {
		width: 100%;
		display: block;		
	}
	
	.form-group-bom > fieldset > .form-right-bom {
		display: block;
		width: 100%;
	}
	
	.form-left-bom {
		width: 100%;
		float: none;
	}
	
	.form-group-bom > .form-right-bom {
		width: 100%;
	}
}

@media (min-width: 1200px) {
	#divFormulario {
		flex: 0 0 60%;
		max-width: 820px;
	}
}