:root {
    --base-font-size: 10px; 
}

html {
    font-size: var(--base-font-size);
}

body, html {
    font-family: 'Inter', sans-serif;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pageLogo {
    position: absolute;
    width: 35em;
    height: auto;
    top: 0;
    left: 0;
    margin-top: 5em;
    margin-left: 5em;
}

.formContainer {
    display: flex; 
    flex-direction: column; 
    border-radius: 2.85em;
    margin-top: 5em;
    padding-top: 3.633em;
    padding-bottom: 3.75em;
    padding-left: 4.2em;
    padding-right: 4.2em;
    background-size: cover;
    background-position: center;
    background-image: url('/img/Frosted-Glass-2.png');
}

input, label {
    display: flex;
}

label {
    font-size: 3.75em;
    font-weight: 600;
    color: #000088;
}

input {
    width: 19em;
    height: 3em;
    font-size: 2em;
    border-radius: 0.8em;
    margin-bottom: 1.25em;
    margin-top: 0.825em;
    padding: 0;
    border: 0!important;
    padding-left: 1em;
}

input:active{
    padding: 0;
}

.buttonContainer{
    width: 40em;
    display: flex;
    justify-content: space-between;
}
    
.backButton:hover, .submitButton:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.backButton {
    width: 13em;
    background-color: #ffffff;
    color: #000000;
    box-shadow: none;
    border:none;
    font-size: 2.125em;
    font-weight: 600;
    height: 2em;
    border-radius: 0.69em;
    cursor: pointer;
    margin-right: 6em;
}

.submitButton {
    width: 13em;
    background-color: #000088;
    color: #ffffff;
    box-shadow: none;
    border:none;
    font-size: 2.125em;
    font-weight: 600;
    height: 2em;
    border-radius: 0.69em;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .formContainer {
        width: 90%;
        padding: 3em 6em;
        margin: 0 1em;
    }
    
    .pageLogo {
        width: 60%;
        margin-top: 2em;
        margin-left: 10%;
    }

    label {
        font-size: 2em;
    }

    input {
        height: 2.5em;
        font-size: 1.5em;
        margin-bottom: 1em;
        margin-top: 0.5em;
        padding-left: 0.5em;
    }

    .backButton, .submitButton {
        width: 45%;
        font-size: 1.5em;
        height: 2.5em;
    }
 
}