label{
    display: block;
    color: #374247;
    margin: 12px 0 24px 0;
}

p{
    margin-top: 50px;
}

input{
    border: none;
    border-radius: 5px;
    font-size: 1.5rem;
    padding: 12px;
}

.download-form{
    position: relative;
    z-index: 9999;
    color: white;
    width: 30%;
    margin: auto;
    min-width: 450px;
}
.subtitle{
    display: flex;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 9999;
}

.subtitle div{
    min-width: 100px;
    height: 100%;
}

.subtitle button{
    margin: auto;
    width: 100%;
    min-width: 125px;
    height: 40%;
    border-radius: 12px;
    color: white;
    font-size: 2.5rem;
    border: 2px solid #0e70c4;
    background-color: #3f9ff3;
    padding: 7px;
    
    box-shadow: 0px 3px 5px 0px var(--bg-color) inset;
    -webkit-box-shadow: 0px 3px 5px 0px var(--bg-color) inset;
    -moz-box-shadow: 0px 3px 5px 0px var(--bg-color) inset;
}

.subtitle button:active{
    background-color: #0e70c4;
    box-shadow: 0px 3px 5px 0px #0e70c4 inset;
    -webkit-box-shadow: 0px 3px 5px 0px #0e70c4 inset;
    -moz-box-shadow: 0px 3px 5px 0px #0e70c4 inset;
}

.subtitle h4{
    font-size: 3rem;
    margin: auto 16px;
}

.shade-warn {
    color: red;
}

.name-container, .email-container{
    text-align: left;
}

.name-container input {
    width: 45%;
    margin-bottom: 12px;
    margin-left: 0;
}

.email-container{
    margin: 50px 0;
}

.email-container input{
    width: 95.5%;
}

.btn-lg-green{
    color: white;
    background-color: #157c42;
    border: none;
    border-radius: 5px;
    font-size: 2rem;
    padding: 12px;
    margin-top: 12px;
    position: relative;
    z-index: 9999;
}

.btn-lg-green:active{
    background-color: #115e33;
}

#download-instruction{
    text-align: left;
    font-style: italic;
}

@media screen and (max-width: 1790px){
    .name-container input {
        width: 90%;
    }
    .email-container input{
        width: 90%;
    }
}