

.form-btn{
    display: inline-block;
    padding: 15px 20px;
    background-color: tomato;
    color: black;
    transition: all .5s ease;
    border-radius: 10px;
}
.form-btn:hover{
    background-color: black;
    color: white;
    width: 50px;
}

.input-container{
    position: relative;
    width: 100%;
    margin-bottom: .5rem;
}

.input-container span.error{
    display: inline-block;
    padding: .4rem 0;
    color: red;
    font-size: 1rem;
}
.input-container .instruction{
    font-size: .8rem;
    margin: 0;
}
.input-container label{
    display: block;
    position: absolute;
    left: .5rem;
    top: 0;
    font-size: .9rem;
    transform: translateY(-50%);
    display: inline-block;
    color: #787878;
    background-color: transparent;
    padding: 0 .5rem;
}
.input-container label::after{
    content: "";
    height: 8px;
    width: 100%;
    background-color: white;
    display: inline-block !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
}

.input-container .form-control{
    padding: 2rem 1.5rem;
    width: 100%;
    font-size: 1rem;
    color: #787878;
    border-radius: .2rem;
    padding: .8rem 1rem;
    background-color: transparent;
    outline: none;
    border: 1px solid #ced4da;
    box-sizing: border-box;
    resize: vertical;
}

.input-container .form-control.error{
    border:1px solid red;
}
.input-container .form-control::placeholder{
    color: gray;
}


/*progressbar*/
#progressbar {
    text-align: center;
    margin:0;
    padding:0;
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
}

#progressbar .active {
    color: #000000;
}

#progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 16.66%;
    float: left;
    position: relative;
}

/*Icons in the ProgressBar*/
#progressbar #personal:before {
    font-family: "Font Awesome 5 Free";
    content: "\f007";
}

#progressbar #contact:before {
    font-family: "Font Awesome 5 Free";
    content: "\f2b9";
}

#progressbar #address:before {
    font-family: "Font Awesome 5 Free";
    content: "\f279";
}

#progressbar #education:before {
    font-family: "Font Awesome 5 Free";
    content: url('/frontend/img/education-outline.svg');
    display: flex;
    justify-content: center;
    align-items: center;
}

#progressbar #certificate:before {
    font-family: "Font Awesome 5 Free";
    content: "\f15c";
}

#progressbar #publication:before {
    font-family: "Font Awesome 5 Free";
    content: url('/frontend/img/pen-nib-solid.svg');
    display: flex;
    justify-content: center;
    align-items: center;
}

/*ProgressBar before any progress*/
#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

/*ProgressBar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

/*Color number of the step and the connector before it*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #FF6F0F ;
}