.form-container{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-bottom: 60px;
    background-size: cover;
    width: 100%;
}
.form-container form{
    padding:20px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 1);
    background: #fff;
    text-align: center;
    width: 500px;

}
.form-container form h3{
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #333;
}
.form-container form input,
.form-container form select{
    width: 100%;
    padding: 10px 15px;
    font-size: 17px;
    margin: 8px 0;
    background: #eee;
    border-radius: 9px;
}
.form-container form select option{
    background: #fff;
}
.form-container form .form-btn{
    background: #0c6c44;
    color: #fff;
    text-transform: capitalize ;
    font-size: 20px;
    cursor: pointer;
}
/* .form-container form .form-btn:hover{
    background: #2196f3;
    color: #fff;
} */
.form-container form p{
    margin-top: 10px;
    font-size: 20px;
    color: #333;
}
.form-container form p a{
    color: #0c6c44;
}
.form-container form .error-msg{
    margin: 10px 0;
    display: block;
    background: crimson;
    color: #fff;
    background-origin: 5px;
    font-size: 20px;
    padding: 10px;
}
.form-container form .error-msg1{
    margin: 10px 0;
    display: block;
    background: #0c6c44;
    color: #fff;
    background-origin: 5px;
    font-size: 20px;
    padding: 10px;
}
/* .container #div1{
    background-color: #fbd0d9;
    width: 30%;
    float: left;
    height: 600px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgb(3, 11, 4);
    background: crimson;
} */
#form .btn-success{
    display: inline-block;
    padding: 10px 20px;
    font-size: 20px;
    background:  #0c6c44;
    color: #fff;
    text-transform: capitalize ;
    font-size: 20px;
    cursor: pointer;
    width: 50%;
    border-radius: 10px;
}
/* #form .btn-success:hover{
    background: #2196f3;
    color: #fff;
} */
.upload{
    width: 100px;
    position: relative;
    margin: auto;
}
.upload .round{
    position: absolute;
    bottom: 20px;
    right: 0;
    background-color: #0c6c44;
    width: 34px;
    height: 33px;
    line-height: 33px;
    overflow: hidden;
    text-align: center;
    border-radius: 50%;
}

.upload .round input[type='file']{
    position: absolute;
    transform: scale(2);
    opacity: 0;

}
input[type='file']::-webkit-file-upload-button{
    cursor: pointer;
}

form .icon{
    position: absolute;
    left: 410px;
    top: -50px;
    width: 60px;
    height: 100%;
    display: flex;
    justify-content: center;
    color: #000000;
}
.fa-eye{
    position: relative;
    top: 42%;
    left: 68%;
    cursor: pointer;
    color: lightgray;
}