label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: .75rem;
    /* display: block; */
}

input,
select {
    height: 3rem;
    min-width: 15rem;
}

.submit {
    margin-top: 2rem;
}


/* Multi-Stage Form */

* {
    box-sizing: border-box;
}

#regForm {
    background-color: #fff;
    padding: 1rem 5rem;
}

h1 {
    text-align: center;
}

input {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    border: 1px solid #aaaaaa;
}


/* Mark input boxes that gets an error on validation: */

input.invalid {
    background-color: #ffdddd;
}


/* Hide all steps by default: */

.tab,
.tab-notes {
    display: none;
}

button {
    background-color: #ffdd76;
    color: #000;
    border: none;
    padding: 10px 20px;
    margin-top: 30px;
    font-size: 17px;
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

#prevBtn {
    background-color: rgba(0, 0, 0, 0.05);
}


/* Make circles that indicate the steps of the form: */

.step {
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
}


/* Mark the steps that are finished and valid: */

.step.finish {
    background-color: #ffdd76;
}