@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    list-style: none;
    text-decoration: none;
}
body{
    padding: 0 10px;
}

.bar_lateral{
    width: 100%;
    height: 20%;
    margin-top: 3em;
    margin-bottom: 3em;
}
.bar_lateral ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bar_lateral ul li{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.icone_1{
    width: 40px;
}
.active_part{
    color: #5BBE83;
}
.active_part:hover{
    color: #757575;
}
.nonactive_part{
    color: black;
}
.wrapper{
    max-width: 700px;
    width: 100%;
    background: #fff;
    margin: 50px auto;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.125);
    padding: 30px;
}

.wrapper .title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #5BBE83;
    text-align: center;
    }

.wrapper .form{
    width: 100%;
}

.wrapper .form .inputfield{
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.wrapper .form .inputfield label{
    width: 200px;
    color: #757575;
    margin-right: 10px;
    font-size: 14px;
}
.inpufield input::placeholder {
    color: #757575;
    opacity: 0.8;
}

.wrapper .form .inputfield .input,
.wrapper .form .inputfield .textarea{
    width: 100%;
    outline: none;
    border: 1px solid #d5dbd9;
    font-size: 15px;
    padding: 8px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.wrapper .form .inputfield .textarea{
    width: 100%;
    height: 125px;
    resize: none;
}

.wrapper .form .inputfield .custom_select{
    position: relative;
    width: 100%;
    height: 37px;
}

.wrapper .form .inputfield .custom_select:before{
    content: "";
    position: absolute;
    top: 12px;
    right: 10px;
    border: 8px solid;
    border-color: #d5dbd9 transparent transparent transparent;
    pointer-events: none;
}

.wrapper .form .inputfield .custom_select select{
    -webkit-appearance: none;
    -moz-appearance:   none;
    appearance:        none;
    outline: none;
    width: 100%;
    height: 100%;
    border: 0px;
    padding: 8px 10px;
    font-size: 15px;
    border: 1px solid #d5dbd9;
    border-radius: 3px;
}


.wrapper .form .inputfield .input:focus,
.wrapper .form .inputfield .textarea:focus,
.wrapper .form .inputfield .custom_select select:focus{
    border: 1px solid #5BBE83;
}

.wrapper .form .inputfield p{
    font-size: 14px;
    color: #757575;
}
.wrapper .form .inputfield .check{
    width: 15px;
    height: 15px;
    position: relative;
    display: block;
    cursor: pointer;
}
.wrapper .form .inputfield .check input[type="checkbox"]{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.wrapper .form .inputfield .btn{
    width: 100%;
    padding: 8px 10px;
    font-size: 15px; 
    border: 0px;
    background:  #5BBE83;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
    outline: none;
    margin-left: 290%;
}

.wrapper .form .inputfield .btn:hover{
    background: #5BBE83;
}

.wrapper .form .inputfield:last-child{
    margin-bottom: 0;
}

@media (max-width:900px) {
    .title{
        padding-top: 2rem;
        margin:auto;
    }
    .wrapper .form .inputfield{
        flex-direction: column;
        align-items: flex-start;
    }
    .wrapper .form .inputfield label{
        margin-bottom: 5px;
    }
    .wrapper .form .inputfield.terms{
        flex-direction: row;
    }
    .bar_lateral ul li h2 {
        font-size: 12px;
        padding-left: 5px ;
    }
}
@media (max-width:450px){
    .bar_lateral{
        display: none;
    }
    .wrapper .form .inputfield .btn{
        margin-left: 100%;
    }
}