.container_webinar {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    font-family: 'NunitoSans', sans-serif;
    color: #564b47;
}

.contain_body {
    width: 70%;
    box-shadow: 3px 3px 12px grey;
    background: rgb(240, 240, 240);
}

/* INTRO */

.contain_intro {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.form_intro {
    width: 60%;
    border-top: solid 5px grey;
    box-shadow: 1px 1px 5px grey;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 10px;
    background: white;
}

.intro_title {
    font-size: 1.7em;
    font-weight: 500;
    margin: 5px 0 25px 0;
	text-align: center; 
}

.label_mandatory{
	font-size: 0.9em;
    color: var(--color-second);
}

.mandatory {
    margin-top: 15px;
}

.form_logo {
    margin: 50px 0;
    text-align: center;
}

.form_logo > img {
    width: 30%;
}

/* GLOBAL */

.invalid-feedback-manual {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: var(--color-red);
}

label {
    margin: 20px 0 10px 0;
    font-size: 1.0em;
}

input[type=text], input[type=number], input[type=email], input[type=tel] {
    height: 25px;
    border: none;
	color: #564b47;
	padding-left: 10px;
    border-bottom: solid 1px #dcdcdc;
    background: rgb(240, 240, 240);
    font-size: 1.05em;
}

input[type=text] {
    width: 280px;
}

input[type=email] {
    width: 330px;
}

input[type=number] {
	width: 180px;
    appearance: none;
    -moz-appearance: textfield;
}

input[type=tel] {
    width: 200px;
}

input:focus { 
    outline: none !important;
    border-color: var(--color-second);
	background: #fff;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #aaa;
	opacity: 1; /* Firefox */
	font-size: 0.8em;
	font-style: italic;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #aaa;
	font-size: 0.8em;
	font-style: italic;
}

::-ms-input-placeholder { /* Microsoft Edge */
	color: #aaa;
	font-size: 0.8em;
	font-style: italic;
}

select {
	width: 167px;
    height: 30px;
    padding-left: 9px;
    border: solid 1px #dcdcdc;
    border-radius: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
	-ms-appearance:none;
    appearance:none;
    color: #564b47;
    font-size: 0.95em;
    cursor: pointer;
}

select:focus {
	outline: 0 none;
    border-color: var(--color-second);
	color: #564b47;
}

option.to_select {
	color: #aaa;
    font-style: italic;
}

/* FORM */

.contain_form {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.contain_form > form {
    width: 80%;
    margin-top: 30px;
}

.form_line {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 50px;
}

.form_line > div {
    width: 50%;
    box-sizing: border-box;
}

.contain_input {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.list_emails {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.list_emails > input {
    margin-bottom: 10px;
}

#add_email {
    font-size: 0.8em;
    cursor: pointer;
}

.email_input {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
	padding-left: 34px;
	margin-bottom: 4px;
}

.delete_mail {
    font-size: 1.2em;
    padding: 5px 10px;
    cursor: pointer;
}

.delete_mail:hover {
    color: var(--color-second);
}

.form_body_title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 35px;
	padding-top: 15px;
    text-align: center;
	color: var(--color-second);
}

.contain_dbms_os {
    padding-bottom: 50px;
}

.form_contact {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.form_contact > div {
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
    width: 75%;
    padding: 25px;
    margin: 30px 0 40px 0;
	background: white;
    border-top: solid 5px grey;
    box-shadow: 1px 1px 5px grey;
    border-radius: 10px;
}

.form_contact > div > div:first-child {
    text-transform: uppercase;
    font-weight: bold;
	font-size: 1.1em;
}

.contain_contact > div {
    display: flex;
    flex-flow: row wrap;
}

.contain_contact > div > div {
    width: 50%;
}

.contain_contact > div > div:nth-child(1) {
    font-size: 0.9em;
}

.contain_contact > div:nth-child(1) > div:nth-child(1) {
    font-size: 1.0em;
}

.contain_contact > div:nth-child(2) > div:nth-child(1) {
	font-weight: bold;
	font-style: italic;
    font-size: 0.8em;
}

.contain_contact > div:nth-child(2) > div:nth-child(2) {
	padding-left: 13px;
}

.contain_contact > div:nth-child(3) > div:nth-child(2) {
	padding-left: 39px;
}

/* FOOTER */

.form_thanks {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.form_thanks > img {
    width: 60%;
    margin: 40px 0 15px 0;
}

.contain_form_footer {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.form_footer {
    width: 60%;
    font-size: 0.75em;
    text-align: justify;
}

.rights {
    padding-top: 10px;
}

.contain_button_submit {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 30px;
    padding: 60px 0;
}

.contain_button_submit > button {
    border: solid 1px grey;
    border-radius: 5px;
    font-weight: bold;
    width: 90px;
    height: 40px;
    font-size: 0.95em;
    cursor: pointer;
}

.contain_button_submit > button:nth-child(1) {
    color: grey;
    background: white;
    box-shadow: 1px 1px 5px grey;
}

.contain_button_submit > button:nth-child(1):focus {
	border: 1px solid var(--color-second);
}

.contain_button_submit > button:nth-child(1):hover {
	background-color: #dedede;
	color: var(--color-second);
}

.contain_button_submit > button:nth-child(2) {
    color: white;
    background: grey;
}

.contain_button_submit > button:nth-child(2):hover {
    background-color: #acacac;
	color: var(--color-second);
}

/* CONFIRMATION */

.container_confirmation {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    font-family: 'NunitoSans', sans-serif;
    color: #564b47;
}

.contain_confirmation {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 45%;
    height: 250px;
    background: rgb(240, 240, 240);
    border-top: solid 5px grey;
    box-shadow: 1px 1px 5px grey;
    border-radius: 10px;
    margin-top: 15vh;
}

.contain_confirmation > img {
    width: 50%;
}

.container_confirmation > div {
    margin-top: 100px;
    font-size: 1.2em;
    padding: 0 20px;
    text-align: center;
}
