
.form-control, .form-select {
    /* Making the form inputs 75% opaque (25% transparent) */
    background-color: rgba(255, 255, 255, 0.75);
    border-color: #ced4da;
    color: #495057;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(255, 255, 255, 0.75);
    border-color: #86b7fe;
    color: #495057;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control::placeholder {
    color: #6c757d;
}

/* 
  We are moving the background from the body to the main section element,
  because the section was covering the body's background.
*/
.contact-us-page main .fold {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/fullscreenPCars.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Adding padding to prevent content from clipping header */
    padding-top: 5rem;
}
