/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}


.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    
    position: relative;
}

.vertical-center {
    margin: 0;
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.bottom-right {
    bottom: 10px;
    position: absolute;
    right: 10px;
}

.mobile-show-only {
    display: none;
}

@media only screen and (max-width: 899px) {
    .mobile-show-only {
        display: block;
    }
}*/


body {
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    display: flex;
    background-color: #d8f0e4;
}

#form_wrapper {
    width: 1000px;
 /*   height: 700px;*/
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-gap: 5vw; */
    /* padding: 5vh 15px; */
    border-radius: 15px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    background-color: #fff;
}


#form_wrapper_fill {
    width: 1000px;
    /*   height: 700px;*/
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    /* grid-gap: 5vw; */
    /* padding: 5vh 15px; */
    border-radius: 15px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    background-color: #fff;
}



#form_left {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding: 2% 2%;
}
#form_right {
   /* display: flex;*/
    justify-content: center;
    align-items: center;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    background: #5cd197;
    background: -webkit-linear-gradient(to right, #00AE58, #5cd197);
    background: linear-gradient(to right, #00AE58, #5cd197);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
}
.layout_row {
    zoom: 1;
    display: block;
    text-align: center;
}
.layout_h {
    color: #4e515e;
    font-weight: 400;
    text-align: center;
    /*font-size: 20px !important;
    line-height: 20px !important;*/
    padding-bottom: 5px !important;
    margin-bottom: 0px;
    margin-top: 0px;
}
}
.layout_text {
    font-weight: lighter;
    font-size: 15px;
    font-family: arial;
    color: #4e515e;
}


.layout_inputbox {
    margin: 13px;
    width: 80%;
    border-radius: 25px;
    border: 1px solid #b6bdc5;
    background-color: #F8f8ff;
    box-sizing: border-box;
    padding-left: 13px;
    height: 43px;
    text-indent: 5px;
    color: #4e515e;
    outline: none;
    margin-top: 13px;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
}

.primary_button {
    cursor: pointer;
    width: 80%;
    height: 43px;
    border-radius: 25px;
    -ms-flex-line-pack: center;
    align-content: center;
    font-size: 16px;
    background-color: #04AA6D;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
}



.secondary_button {
    cursor: pointer;
    width: 80%;
    height: 43px;
    border-radius: 25px;
    -ms-flex-line-pack: center;
    align-content: center;
    font-size: 16px;
    background-color: #0e5732;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
}

/*   Open state of the dialog  */
dialog[open] {
    opacity: 1;
    transform: scaleY(1);
}

/*   Closed state of the dialog   */
dialog {
    opacity: 0;
    transform: scaleY(0);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out, overlay 0.7s ease-out allow-discrete, display 0.7s ease-out allow-discrete;
    /* Equivalent to
  transition: all 0.7s allow-discrete; */
}

/*   Before-open state  */
/* Needs to be after the previous dialog[open] rule to take effect,
    as the specificity is the same */
@starting-style {
    dialog[open] {
        opacity: 0;
        transform: scaleY(0);
    }
}

/* Transition the :backdrop when the dialog modal is promoted to the top layer */
dialog::backdrop {
    background-color: rgb(0 0 0 / 0%);
    transition: display 0.7s allow-discrete, overlay 0.7s allow-discrete, background-color 0.7s;
    /* Equivalent to
  transition: all 0.7s allow-discrete; */
}

dialog[open]::backdrop {
    background-color: #0e57327a;
}

/* This starting-style rule cannot be nested inside the above selector
because the nesting selector cannot represent pseudo-elements. */

@starting-style {
    dialog[open]::backdrop {
        background-color: rgb(0 0 0 / 0%);
    }
}


meter {
    /* Reset the default appearance */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0 auto 1em;
    width: 100%;
    height: 0.5em;
    /* Applicable only to Firefox */
    background: none;
    background-color: rgba(0, 0, 0, 0.1);
}

    meter::-webkit-meter-bar {
        background: none;
        background-color: rgba(0, 0, 0, 0.1);
    }

    /* Webkit based browsers */
    meter[value="1"]::-webkit-meter-optimum-value {
        background: red;
    }

    meter[value="2"]::-webkit-meter-optimum-value {
        background: yellow;
    }

    meter[value="3"]::-webkit-meter-optimum-value {
        background: orange;
    }

    meter[value="4"]::-webkit-meter-optimum-value {
        background: green;
    }

    /* Gecko based browsers */
    meter[value="1"]::-moz-meter-bar {
        background: red;
    }

    meter[value="2"]::-moz-meter-bar {
        background: yellow;
    }

    meter[value="3"]::-moz-meter-bar {
        background: orange;
    }

    meter[value="4"]::-moz-meter-bar {
        background: green;
    }



@media screen and (max-width: 768px) {
    #form_wrapper {
        grid-template-columns: 1fr;
        margin-left: 10px;
        margin-right: 10px;
    }

    #form_right {
        display: none;
    }

}
