.root {
    background-color: #0138B7;
    color: white;
    overflow: auto;
}

#loading-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255,255,255,0.4);
}

.text-center {
    text-align: center;
}

.form-container {
    font-size: 20px;
    width: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.f-label {    
    font-family: Arial, Helvetica, sans-serif;
    margin: 25px 0px 5px 0px;
}

.f-input {    
    color: #0138B7;
    padding: 7px 10px;
    background-color: white;
    border: none;
    outline: none;
    border-radius: 5px;    
    font-size: 20px;
}

.f-dropdown {        
    color: #0138B7;
    padding: 7px 10px;
    background-color: white;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 20px;
}

.f-button {
    width: 200px;
    height: 50px;    
    color: #0138B7;
    background-color: white;
    border-radius: 10px;
    margin-top: 30px;
    align-self: center;
    font-size: 20px;
    opacity: 0.5;
}

#captcha_cont {
    margin-top: 10px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .form-container {
        font-size: 18px;
        width: 90%;
        margin: auto;
        display: flex;
        flex-direction: column;
    }

    .f-dropdown, .f-input, .f-button {        
        font-size: 18px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 768px) {
    .form-container {
        font-size: 18px;
        width: 90%;
        margin: auto;
        display: flex;
        flex-direction: column;
    }
    .f-dropdown, .f-input, .f-button {    
        font-size: 18px;
    }
}
