
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100%;
    background-color: #F5F5F7;
    display: flex;     
    flex-direction: column;  
    justify-items: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
} 

main {
    height: 70vh;
    width: 50%;    
    display: grid;
    justify-items: center;
    align-items: center;
    background-color: #F5F5F7;
    border-radius: 7px;
}

    main h1{
        margin-top: 10%;
        margin-bottom: 0%;
        font-size: 32pt;
    }

    main #login-error-msg-holder {
        display: none;  
        /* display: flex; */
        /* text-align: center;
        justify-items: center; */
        /* align-items: center; 
        justify-content: center;
        width: 100%;
        height: 30%;*/
    } 

    /* main #login-error-msg {
        /* justify-content: center; 
        width: 23%;
        text-align: center;
        /* margin: 0; 
        padding: 5px;
        font-size: 0.9em;
        font-weight: bold;
        color: #8a0000;
        border: 1px solid #8a0000;
        background-color: #e58f8f;
    } 


    #error-msg-second-line {
        display: block;
    }*/

.formulario {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20%;
    gap: 5px;
    /* align-self: flex-start; */
    /* display: grid; */
    /* justify-items: center; */
    /* align-items: center; */
}

.login-form-field {
    border: none;
    font-size: 11pt;
    border-bottom: 1px solid #3a3a3a;
    margin-bottom: 10px;
    border-radius: 3px;
    outline: none;
    padding: 1.5em 1.5em 1.5em 1.5em;
    background-color: #D7D7EC;
}

    .login-form-field::placeholder {
        color: #3a3a3a;
    }

.login-form-submit {
    width: 100%;
    display: inline-block;
    font-size: 1em;
    padding: 0.35em 1.2em;
    border: 0.1em solid #F5F5F7;
    border-radius: 5px;
    color: #F5F5F7;
    font-weight: bold;
    font-size: 1em;
    font-family:'Roboto',sans-serif;
    background-color: #3a3a3a;
    cursor: pointer;
    outline: none;
}
/* 
.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
} */


/* .login-form input[type="submit"] {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
} */