* {
    font-family: 'Barlow', sans-serif;
}
html {
    background-image: url("blue.jpg");
}
#main-holder {
    background-color: transparent;
    width: 100%;
    height: 100%;
    display: grid;
    justify-items: center;
    align-items: center;
}
#login-header {
    color: #e0dfde;
    font-weight: lighter;
    z-index: 2;
}
#login-error-msg-holder {
    width: 100%;
    height: 100%;
    display: grid;
    justify-items: center;
    align-items: center;
} 
#login-error-msg {
    color: #b40505;
    opacity: 0;
    font-weight: bold;
    text-align: center;
    margin: 0;
    padding-top: 3%;
}
#login-form {
    align-self: flex-start;
    display: grid;
    justify-items: center;
    align-items: center;
    background-color: transparent;
} 
.login-form-field::placeholder {
    color: #e0dfde;
    opacity: 1;
    background-color: transparent;
} 
.login-form-field {
    color: #e0dfde;
    border: none;
    border-bottom: 1px solid #e0dfde;
    outline: none;
    border-radius: 3px;
    padding-top: 10%;
    background-color: transparent;
}
.remember-field {
    color: #e0dfde;
    padding-bottom: 15%;
} 
#login-form-submit, #signup-form {
    border:#e0dfde 1px solid;
    color: white;
    font-weight: lighter;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    width: 100%;
    margin-bottom: 15%;
    padding-top: 5%;
    padding-bottom: 5%;
    border-radius: 5px;
}
#login-form-submit:hover {
    background-color: #FBBB22;
    opacity: 0.9;
    transition: 0.8s;
}
.info-popup {
    font-size: large;
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    color: #e0dfde;
    background-color: transparent;
}
#hide {
    padding-top: 2%;
    display: none;
    overflow: hidden;
}
.info-popup:hover {
    color: #134A98;
    transition: ease-in-out 0.6s;
    background-color: #e0dfde;
}
.info-popup:hover #hide {
    display: block;
    max-height: 100%
}

/*Mobile devices*/
@media only screen and (min-width: 320px) and (max-width: 480px) {
    #login-header {
        font-size: 28px;
    } 
    #login-error-msg {
        font-size: 16px;
    } 
    .login-form-field::placeholder {
        font-size: 16px;
    } 
    .login-form-field {
        font-size: 16px;
        margin-bottom: 15%;
    } 
    #login-form-submit, #signup-form {
        font-size: 16px;
    }
    .form-errors{
        font-size: 16px;
    }
}

/*IPads, Tablets*/
@media only screen and (min-width: 481px) and (max-width: 768px) {
    #login-header {
        font-size: 36px;
    } 
    #login-error-msg {
        font-size: 20px;
    } 
    .login-form-field::placeholder {
        font-size: 20px;
    } 
    .login-form-field {
        margin-bottom: 25%;
        font-size: 20px;
    }
    #login-form-submit, #signup-form {
        font-size: 20px;
    }
    .form-errors{
        font-size: 20px;
    }
}

/*Small screens, laptops*/
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    #login-header {
        font-size: 40px;
    } 
    #login-error-msg {
        font-size: 20px;
    } 
    .login-form-field::placeholder {
        font-size: 20px;
    } 
    .login-form-field {
        margin-bottom: 35%;
        font-size: 20px;
    } 
    #login-form-submit, #signup-form {
        font-size: 20px;
    }
    .form-errors{
        font-size: 20px;
    }
}

/*Desktops, large screens*/
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
    #login-header {
        font-size: 50px;
    }
    #login-error-msg {
        font-size: 24px;
    } 
    .login-form-field::placeholder {
        font-size: 24px;
    } 
    .login-form-field {
        margin-bottom: 35%;
        font-size: 24px;
    } 
    #login-form-submit, #signup-form {
        font-size: 24px;
    }
    .form-errors{
        font-size: 24px;
    }
}

/*Extra large screens*/
@media only screen and (min-width: 1201px) {

    #login-header {
        font-size: 50px;
    } 
    #login-error-msg {
        font-size: 24px;
    } 
    .login-form-field::placeholder {
        font-size: 24px;
    } 
    .login-form-field {
        margin-bottom: 35%;
        font-size: 24px;
    } 
    #login-form-submit, #signup-form {
        font-size: 24px;
    }
    .form-errors{
        font-size: 24px;
    }
}
