* {
    box-sizing: border-box;
}

body {
    background-color: #f1f1f1;
}

#regForm {
    background-color: #ffffff;
    margin: 100px auto;
    /* font-family: Raleway; */
    padding: 40px;
    width: 70%;
    min-width: 300px;
}

#regForm .form-check {
    display: inline-block;
    margin-right: 20px;
}

h1 {
    text-align: center;
}

input {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    /* font-family: Raleway; */
    border: 1px solid #aaaaaa;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
    display: none;
}

button {
    background-color: #04aa6d;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    /* font-family: Raleway; */
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

#prevBtn {
    background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
    width: 24%;
    margin: 0 2px;
    background-color: #48bdb9;
    display: block;
    color: #fff;
    border-radius: 3px;
    width: auto;
    padding: 10px 0;
    margin: 20px 0;
}

.step.active {
    background-color: #021f62;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: hsl(158, 95%, 34%);
    background-color: #27ae60;
}

.thirty {
    width: 30% !important;
}

.seventy {
    width: 70% !important;
}

.half {
    width: 50% !important;
}

@media (max-width: 992px){
    .content > .container, .content > .container-sm {
        max-width: none !important;
    }
}
