
html, body {
    font-size: 1.042vw;
}

.disabled{
    color: gray;
    background-color: lightgray;
}
h1{
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
    width: fit-content;
}
form {
    margin: 0 auto;
    width: 70%;
}

.form-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;

}

.form-label {
    font-size: 1rem;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: .5rem;
    background-color: #eee;
    height: 5vw;
    width: 40%;
    padding: 1rem;
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 1rem;
    display: flex;
    height: 5vw;

    justify-content: flex-start;
    align-items: center;
    border: 1px solid #eee;
}

.required {
    display: flex;
    width: fit-content;
    height: 1rem;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #cf685f, #bb271a);
    border-radius: .2rem;
    font-size: .4rem;
    padding: 0 .3rem;
    color: white;
    border: 1px solid #bb271a;
}

#terms-of-use * {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
}

#terms-of-use {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
}


.btn-apply-demo{
    font-size: 1rem;
    text-align: center;
    color:  #bb271a;
}
.btn-apply-demo:hover{
    color:  #bb271a;
}
.btn-apply-demo span{
    text-decoration: underline;
}
button {
    display: block;
    margin: 0 auto;
    background-color: #ed8537;
    font-size: 1rem;
    padding: .5rem 2rem;
    border-radius: .3rem;
    width: fit-content;
    border: none;
    color: white;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
}
#check{
    /*display: flex;*/
    /*flex-direction: row;*/
    /*justify-content: center;*/
    /*align-items: center;*/
}
.terms-active {
    color: #444;
}

@media screen and (max-width: 1024px) {
    html,body {
        font-size:3vw;
    }
    form {
        width: 100%;
    }

    .form-field {
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: center;
    }
    .form-label {
        justify-content: left;
        align-content: center;
    padding: 1rem;
        width: 100%;
    }
    .form-input {
        padding:1rem;
        height: 3rem;

    }
    .form-input input {
        justify-content: left;
        align-items: center;
        width: 100%;
    }

}




