* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

/*Background color*/
#grad1 {
    background-color:lightblue;
}

/*form styles*/
/* #subform {
    text-align: center;
    position: relative;
    margin-top: 20px;
} */

#subform fieldset .form-card {
    background: white;
    border: 0 none;
    border-radius: 0px;
    /*box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);*/
    padding: 20px 40px 30px 40px;
    box-sizing: border-box;
    width: 94%;
    margin: 0 3% 20px 3%;

    /*stacking fieldsets above each other*/
    position: relative;
}

#subform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0;
    box-sizing: border-box;
    width: 100%;
    margin: 0;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#subform fieldset:not(:first-of-type) {
    display: none;
}



#subform fieldset .form-card {
    text-align: left;
    color: #9E9E9E;
}

#subform input {
    padding: 0px 8px 4px 8px;
    border: none;
    border: 2px solid #1358a6;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    /* width: 100%; */
    box-sizing: border-box;
    color: #2C3E50;
    font-size: 14px;
    /* letter-spacing: 1px; */
}

#subform input:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-weight: 400;
    outline-width: 0;
}

/*Blue Buttons*/
#subform .action-button {
    background: #1358a6;
    font-weight: 500;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 15px 5px 0 0px;
}

#subform .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #1358a6;
    font-weight: 600;
}

/*Previous Buttons*/
#subform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: 600;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
}



/*The background card*/
.card {
    z-index: 0;
    border: none;
    border-radius: 0.5rem;
    position: relative;
}

/*FieldSet headings*/
.fs-title {
    font-size: 25px;
    color: #1358a6;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}

/*progressbar*/
#progressbar {
    margin-bottom: 0px;
    overflow: hidden;
    background-color: white;
    padding: 20px 40px 0 40px;
    margin: 0;
}

#progressbar .active {
    color: #000000;
}

#progressbar li {
    list-style-type: none;
    width: 20px;
    float: left;
    position: relative;
}


/*ProgressBar before any progress*/
#progressbar li:before {
	content: '';
    width: 15px;
    height: 15px;
    line-height: 10px;
    display: block;
    font-size: 10px;
    color: #ffffff;
	border: 2px solid #1358a6;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}


/*Color number of the step and the connector before it*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #1358a6;
}

