.IS_modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 150; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */

}

.IS_modal_content {
    background-color: #fefefe;
    margin: 20% auto; /* 50% from the top and centered */
    /* padding: 20px; */
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
    
    background-image: linear-gradient(to bottom, rgba(14, 14, 14, 0.52), rgba(95, 95, 95, 0.73)),
    url('https://learn.fly8ma.com/wp-content/uploads/2019/11/IMG_1104-1.jpg');
}

@media screen and (max-width: 767px) {
    .IS_modal_content {
        width: 300px;
    }
}

.IS_heading {
    color: #fefefe;
    text-transform: none;
    text-align:center;
    margin-top: 20px;
}

.IS_subheading {
    color: #fff;
    text-align: center;
    width: 60%;
    margin: 0 auto;
    padding-bottom: 20px;
}

.IS_hr {
    margin: 20px auto;
    border-top: 5px solid #2d458a; 
    width: 60%;
}

.IS_form_container {
    background: #165c79;
    padding: 20px 0;
    width: 100%;
} 
.IS_formInput {
    display: block;
    margin: 0px auto 15px;
    padding: 10px 30px !important;
    width: 80%;
    height: 5% !important;
    box-sizing: border-box !important;
    border: none !important;
    outline: none !important;
    border-bottom: 1px solid #aaa !important;
    font-size: 12px !important;
    border-radius: 15px !important;
    background-color: #fff !important;
    color: #222 !important;
}

.IS_response {
    display: flex;
    justify-content: center;
    align-items: center;
}

.IS_response > .success {
    color: #25a757;
    background: #222;
    padding: 10px;
}

.IS_response > .failure {
    color: #FF4500;
    background: #222;
    padding: 10px;
}

.IS_button_container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.IS_button {
    background: #771d0d;
    color: #fff;
    padding: 10px 20px;

}