#twoFaContainer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    background-color: #f4f5f8;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: black;
    border-radius: 8px;
    padding: 20px;
    width: 30%;
}    
@media (max-height: 800px) {
    #loginContainer {
        height: 100vh;
    }
    #twoFaContainer{
        height: 100vh;
    }
    form {
        width: 70vw;
    }
}
@media (max-width:800px){
    #twoFaContainer{
        height: 100%;
        width: 100%;
    }
}
@media(min-width:801px) and (max-width: 1200px) {
    #twoFaContainer {
        width: 60%;
    }
    form {
        width: 400px;
    }
}
@media (min-height: 801px) {
    #loginContainer {
        height: 53vh;
        max-width: 500px;
    }
    form {
        width: 400px;
    }
}

body {
    font-family: Arial, sans-serif;
    background-color: #323f4c;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#loginContainer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    background-color: #f4f5f8;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: black;
    border-radius: 8px;
}
h1 {
    margin-bottom: 10px;
    text-align: center;
    color: black;
}

#labelDiv {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    color: black;
    text-align: start;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #fff;
    color: black;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    /* Isso garante que o padding e a borda sejam incluídos na largura total */
}

input[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

#pError {
    color: red;
    text-align: center;
}
#formTwoFa{
    padding-top: 12px;
    padding-bottom: 8px;
}
form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}