﻿/* Style the form */
#regForm {
    background-color: #ffffff;
    padding: 40px 0;
    width: 100%;
    min-width: 300px;
}

/* Mark input boxes that gets an error on validation: */
input.invalid, select.invalid {
    border: 1px solid red;
}

input.valid, select.valid {
    border: 1px solid #cccccc !important;
}

/* Hide all steps by default: */
.tab {
    display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

/* Mark the active step: */
.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: #266a3a;
}
span.red{color:red;}