
/*basic reset*/
* {
    margin: 0;
    padding: 0;
}
/*form styles*/
.register-form {
    position: relative;
    overflow: hidden;
}

.register-form fieldset {
    background: #FFF;
    /* box-shadow: 0px 0px 20px #2C2E2D21;; */
    /* border-radius: 37px; */
    box-sizing: border-box;
    /* margin: 0 1%; */
    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
.register-form fieldset:not(:first-of-type) {
    display: none;
}

/*buttons*/
.register-form .action-button {
    /* width: 100px; */
    background: #D71F29;
    font-weight: bold;
    color: white;
    border: 0 none;
    /* border-radius: 24px;; */
    cursor: pointer;
    padding: 10px 5px;
    margin-bottom: 3px;
}
.register-form .action-button a{
    color: #FFF;
    display: block;
}
.register-form .action-button:hover, .register-form .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #D71F29;
    outline: 0;
}

.register-form .action-button-previous {
    width: 100px;
    background: transparent;
    font-weight: bold;
    color: #D71F29;
    border: 0 none;
    /* border-radius: 24px; */
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

.register-form .action-button-previous:hover, .register-form .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #47201E;
    outline: 0;
}


/*progressbar*/
.steps {
    /* margin-bottom: 80px; */
    overflow: hidden;
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-evenly;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

.steps li {
    list-style-type: none;
    text-transform: uppercase;
    font-size: 9px;
    float: right;
    position: relative;
    letter-spacing: 1px;
    /* opacity: 0.2; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* .steps li p img{
    display: block;
    margin: auto;
}
.steps li .arrow{
    background: #2C2E2D;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    margin-right: 30px;
}
.steps li.active .arrow {
    background: #47201E;
} */



/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
.steps li.active:before, .steps li.active {
    opacity: 1;
}

