body, html {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    /*height: 100%;*/
    /*min-height: 100vh;*/
}

#logo-wrapper
{
    width:100%;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
}
.container {
    display: flex;
    /*height: 100vh;*/
}
.left-column {
    flex: 1;
    background-size: cover;
}
.right-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    /*box-shadow:-13px 1px 20px 9px #00000024;*/
}
.form-container {
    border-radius: 8px;
    max-width: 80%;
    width: 100%;
    /*height: 100vh;*/
    position: relative;
}

.form-container label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333333;
}
.form-container select,
.form-container input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background-color:white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 18px;
    border:1px solid #dbdbdb;
    color: #333;
    -webkit-appearance: none;
}

#submit-button
{
    background: #11b3ab;
    color: white;
    border: none;
    cursor: pointer;
}

#submit-button.disabled
{
    background-color: #11b3ab5c !important;
}

#footer
{
    display: block;
    font-size: 80%;
    color: #333333;
    bottom: 40px;
    /* position: absolute; */
    text-align: center;
    width: 100%;
    padding: 20px 0;
}
.thankyou
{
    text-align: center;
    display: block;
    font-size: 29px;
    padding: 50px 0;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .left-column {
        /*display: none;*/
    }
    .right-column {
        flex: 1;
        background:none
    }
    .right-column .background
    {
        background-size: cover;
        background-attachment: fixed;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
    }
    .form-container
    {
        width: 100%;
        max-width: 100%;
        border-radius: 10px;
    }
    .form-container form {
        background: rgba(255, 255, 255, 0.9);
        /*padding: 20px;*/
    }
 
    #footer
    {
        color: #fff;
    }
}