﻿/* Style the form */
#regForm {
    background-color: rgba(0, 0, 0, 0.4);
    margin: 100px auto;
    padding: 40px;
    width: 70%;
    min-width: 300px;
    border-radius: 10px;
    box-shadow: 10px 15px 20px 10px rgba(0, 0, 0, 0.5);
    z-index: 50;
}

.register-caption {
    z-index: 99999;
}

.car-size-select {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;    
}

@media (max-width: 1000px) {
    .car-size-select {
        font-size: 50px;
    }

    .price-info-text {
        font-size: 30px;
    }
}



/* Style the input fields */
input {
    padding: 10px;
    width: 100%;
    font-size: 17px;    
    border: 0px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    z-index: 100;
}

    /* Mark input boxes that gets an error on validation: */
    input.invalid {
        border: 1px solid rgba(255, 0, 0, 0.3);
        background-color: rgba(255, 0, 0, 0.05);
    }

    input.valid {
        border: 1px solid rgba(0, 255, 0, 0.3);
        background-color: rgba(0, 255, 0, 0.05);
    }

    /* Mark input boxes that gets an error on validation: */
    input.invalidEmail {
        border: 1px solid rgba(255, 255, 0, 0.3);
        background-color: rgba(255, 255, 0, 0.05);
    }

/* 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: #04AA6D;
    }

@media (max-width: 1000px) {
    #regForm {
        margin-top: 150px;
        width: 100%;        
        font-size: 3rem;
    }

    input {
        font-size: 3rem;
    }

    .register-caption {
        font-size: 6rem;
        z-index: 9999999;
    }

    #nextBtn {
        font-size: 4rem;
    }

    #prevBtn {
        font-size: 4rem;
    }
}


