body {
    font: normal 400 18px / 1.67 Lato, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.login-container {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    margin-top: 5%;
    margin-bottom: 10%;
}

.login-logo {
    background-image: url('../img/login.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 32%;
    min-width: 460px;
    margin-top: 5%;
    margin-bottom: 10%;
    margin-left: 40px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

h3 {
    text-align: center;
    margin-bottom: 20px;
}

.login-title {
    font: normal 400 20px / 1.67 Lato, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.login-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.login-container .mfa-input {
    width: 55px;
    height: 50px;
    text-align: center;
    font: normal 400 16px / 1.67 Lato, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.forgot-password {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #000;
    text-decoration: none;
    text-align: center;
    font: normal 400 12px / 1.67 Lato, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    background-color: #000;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.login-btn-btn:hover {
    background-color: #535252;
}

.login-back-btn {
    background-color: #cc0201;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 2px;
}

.login-back-btn:hover {
    background-color: #9c0202;
}