*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url(../images/bg8.jpg);
    background-size: cover;
}

.container-form{
    display: flex;
    border-radius: 20px;
    box-shadow: 0 5px 7px rgb(0 0 0 / 10%);
    height: 500px;
    max-width: 900px;
    transition: all 1s ease;
    margin: 10px;
}

.frow {
    clear:both;
	  padding:10px;
}

.frow .col {
  float
	display: block;
	float:left;
	margin: 1% 0 1% 1.6%;
  padding:0;
}

.frow .col:first-child { margin-left: 0; }

.frow .col4 {
  width: 19.8%;
}

.frow .col3 {
  width: 28.26%;
}

.frow .col2 {
    width: 49%;
}

.information{
    width: 40%;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #FFB600;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.info-childs{
    width: 100%;
    padding: 0 30px;
}

.info-childs h2{
    font-size: 2.5rem;
    color: #fff;
}

.info-childs p{
    margin: 15px 0;
    color: #fff;
}

.info-childs input{
    /*background-color: transparent;*/
    outline: none;
    border: solid 2px #707070;
    border-radius: 10px;
    padding: 10px 20px;
    color: #707070;
    cursor: pointer;
    transition: background-color 3s ease;
}

.info-childs input:hover{
    background-color: #707070;
    /*border: none;*/
    color: #fff;
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
}

.form-information{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    text-align: center;    
    background-color: #fff;
    border-color: #f8f8f8;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.form-information-childs{
    padding: 0 30px;
}

.form-information-childs h2{
    color: #333;
    font-size: 2rem;
}

.form-information-childs p{
    color: #555;
}

.icons{
    margin: 15px 0;
}

.icons i {
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
    margin: 0 10px;
    color: #707070;
    border: solid thin #707070;
    transition: background-color 3s ease;
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
}

.icons i:hover {
    background-color: #c7c7f3;
    color: #fff;
}

.form{
    margin: 30px 0 0 0;
}

.form label{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-radius: 10px;
    background-color: #fff;
    padding: 0 10px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
}

.form label input{
    width: 100%;
    padding: 10px;
    background-color: #fff;
    border: none;
    outline: none;
    border-radius: 10px;
    color: #333;
}

.form label select{
    width: 100%;
    padding: 10px;
    background-color: #fff;
    border: none;
    outline: none;
    border-radius: 10px;
    color: #333;
}

.form label i{
    color: #a7a7a7;
}

.form input[type="button"]{
    background-color: #707070;
    color: #fff;
    border-radius: 10px;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
}

.form input[type="button"]:hover{
    background-color: #7a7a9a;
}

.hide{
    position: absolute;
    transform: translateY(-300%);
}

.l2{
    font-size: 13px;
    color: #9A9A9A;
    border: none;
    position: relative;
    top:6px;
    box-shadow: none !important;
    padding: 3px !important;
}

/* RESPONSIVE FORM */

@media screen and (max-width:750px) {
    html{
        font-size: 12px;
    }
}

@media screen and (max-width:580px) {
    html{
        font-size: 10px;
    }

    .container-form{
        height: auto;
        flex-direction: column;
    }

    .information{
        width: 100%;
        padding: 20px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .form-information{
        width: 100%;
        padding: 20px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }    

    .col {  margin: 1% 0 1% 0%;  margin-left: 0 !important;}
	.frow .col2, .col3, .frow .col4 { width: 100%; }
}