/* --------------- FORMS -----------------------*/
#inputCv{
    width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
#inputCv + label, .sendForm{
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.201);
    color: white;
    padding: 5px 10px;
    display: inline-block;
    min-height: 30px;
    cursor: pointer;
    font-weight: bold;
}

#inputCv + label img{
    width: 20px;
    height: 20px;
    transform: translateY(25%);
}

#inputCv + label span{
    margin-left: 10px;
}

.form-canvas{
    padding: 50px;
    width: 100%;
    font-family: "SFProLight";
    font-size: 20px;
    line-height: 25px;
    font-weight: lighter;
    margin-top: 30px;
}

.form-field{
    position: relative;
    color: white;
    border-bottom: 1px solid white;
    margin-bottom: 30px;
}

.form-field input[type=text] {
    position: inherit;
    bottom: 0px;
    background-color: #DB2537;
    border: none;
    width: 100%;
    color: white;
    font-size: 20px;
    line-height: 25px;
    font-weight: lighter;
    padding-bottom: 5px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3px;
}

.form-label{
   margin-right: 10px;
   margin-bottom: 5px;
   font-weight: bold;
}

.form-text-area{
    position: relative;
    color: white;
}

.text-area{
    border: 1px solid white;
    background-color: #DB2537;
    padding: 5px;
    font-size: 14px;
    color: white;
    width: 100%;
    margin-top: 10px;
    font-weight: lighter;
}

.text-box{    
    padding: 25px;
    border-radius: 20px;
    text-align: justify;
}


.form-container {
    width: 35vw;
}

.form-action-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


/* --------------- FORMS -----------------------*/