.get-quote-form-container {
    padding: 4em 0;
}
/* .get-quote-form-container p {
    text-align: center;
    font-size: 1.25em;
    max-width: 60%;
    margin: 0 auto 2em auto;
} */

.get-quote-form {
    display: flex;
    margin: 0 auto;
    max-width: 1200px;
}

.get-quote-form form {
    background-color: #F3F8FB;
    padding: 40px 20px;
    width: 700px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    height: 42em;
}

.get-quote-form .form-img {
    width: 500px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-image: url('/images/quote-form.jpg');
    color: white;
    padding: 20px;
    font-size: 1.25em;
    background-size: cover;
}

.form-img p {
    font-weight: bold;
}

/* Form */
.get-quote-form form h2 {
    background-color: #22405C;
    color: white;
    width: fit-content;
    padding: 10px 20px;
    border-radius: 10px;
    margin-left: -50px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.form-group-cols {
    display: flex;
    margin: 10px 0;
}
.form-group-cols div {
    width: 50%;
}

.form-group-cols div h4,
.form-step h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.form-group-cols div span {
    font-size: 12px;
}

.form-group-cols div label {
    cursor: pointer;
}

.form-group label {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.form-group input {
    background-color: #00000020;
    border: none;
    outline: none;
    font-size: 1.25em;
    padding: 10px 20px;
    border-radius: 5px;
}

.form-group-next {
    align-items: end;
    margin-top: 20px;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 0;
}

.form-group-submit {
    margin-top: 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.form-group-submit p {
    margin: 0;
    font-weight: bold;
}

.form-group-submit button,
.form-group-next button,
.form-group-next a {
    padding: 10px 20px;
    width: 100px;
    background-color: #22405C;
    color: white;
    font-weight: bold;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

@media only screen and (max-width: 1300px) {
    .form-img {
        display: none;
    }
    .get-quote-form-container {
        padding: 4em;
    }
    .get-quote-form form {
        width: 100%;
    }
}

@media only screen and (max-width: 865px) {
    .get-quote-form-container {
        padding: 0;
    }
    .get-quote-form form {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .get-quote-form form h2 {
        margin-left: 0;
        font-size: 1.25em;
    }
    .form-group input {
        width: 87%;
    }
}

/* Steps */
.form-step {
    display: none;
}
.form-step.form-step-active {
    display: flex;
    flex-direction: column;
    height: 39em;
}
.submit-btn {
    padding: 15px 25px;
    font-size: 1em;
    width: 100px;
}

#confirmation-message {
    font-weight: bold;
    margin: 5px 0 0 0;
    color: black;
}
