*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

#spinner{
    margin-left: 3px;
    color: white;
    display: none;
    align-self: right;
}

#spinner2{
    margin-left: 3px;
    color: white;
    display: none;
    align-self: right;
}

#iError{
    color: rgb(103, 52, 214);
    font-size: 125px;
}

.footer {
    font-size: 8pt;
    color: #838383;
    padding: 20px;
    text-align: center;
    position: bottom;
    left: 0;
    bottom: 0;
    width: 100%;
  }

.logo{
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0.2rem;

}
nav {
    color: white;
    font-weight: bold;
    background-color: #212121;
    height: 80px;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 0rem calc((100vw - 1300px)/2);
}


input {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.twofa_token{
    width: 150px;
    text-align: center;
}
.twofa-holder{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.login-text{
    font-size: 20pt;
    display: inline;
}

.error-text{
    font-size: 20pt;
    display: inline;
}

#container-login {
    height: 550px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    opacity: 1;
    min-width: 350px;
    max-width: 400px;
    text-align: center;
    display: block;
    animation: login_animation 0.5s ease-in-out;
}

#container-error {
    flex-direction: column;
    height: 550px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    opacity: 1;
    min-width: 350px;
    max-width: 350px;
    text-align: center;
    display: none;
    animation: login_animation 0.5s ease-in-out;
}

@keyframes login_animation {
    from {
        transform: translateY(+20px);
    }

    to {transform: translateY(0)};
  }

#container-twofa {
    height: 550px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    opacity: 1;
    min-width: 350px;
    max-width: 400px;
    text-align: center;
    align-self: center;
    display: none;
    animation: login_animation 0.5s ease-in-out;
}

button {
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
    margin-bottom: 15px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: #3e5ec6;
    width: 100%;
    font-size: 16px;
}

.return-button{
    background-color: black;
    align-self: top;
}



label {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: left;
    color: #555;
    font-weight: bold;
}

#form-container{
    margin-top: 5rem;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: none;
    flex-wrap: wrap;

}

.wrap{
    display: flex;
    flex-direction: column;
    justify-items: center;
}