body {
    margin: 0;
    height: 100vh;
    display: flex;
}

.loginLogo {
    display: flex;
    flex: 1;
    align-items: center;
    background-color: #ffffff;
}

.loginContainer {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #80b63a;
    border-radius: 25px;
    padding: 20px;
}

.loginH2 {
    font-family: sans-serif;
    font-weight: normal;
    color: #000000;
}

.loginInput {
    width: 300px;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    box-sizing: border-box;
    border: 1px solid #b8b8b8;
}

.containerPassword {
    margin-bottom: -8px;
}

.containerButton {
    display: flex;
    margin-top: -10px;
    justify-content: flex-end;
}

.loginButton {
    border: none;
    cursor: pointer;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #0274ee;
}

.loginButton:hover {
    background-color: #02458d;
}

.loginError {
    display: none;
    position: fixed;
    text-align: center;
    font-family: sans-serif;
    top: 50%;
    left: 50%;
    width: 300px;
    color: rgb(0, 0, 0);
    padding: 60px 15px;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    border-radius: 1px solid rgb(255, 255, 255);
    z-index: 1;
    background-color: #ffffff;
}

.buttonError {
    position: absolute;
    border: none;
    right: 10px;
    bottom: 10px;
    color: #ffffff;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #0274ee;
}