.login__container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo img {
    width: 50%;
}

.login {
    width: 90%;
    height: fit-content;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #ffffff;
    gap: 15px;
}

.login h1 {
    text-align: center;
    font-size: calc(32 / 16 * 1rem);
    color: #ffffff;
}

.login form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login form label {
    font-size: calc(16 / 16  * 1rem);
    font-weight: bold;
    margin-bottom: -10px;
}

.login form input {
    font-size: calc(16 /16 * 1rem);
    padding: 5px 15px;
    border: 1px solid #0E3CC7;
    border-radius: 5px;
    outline: none;
    color: #121212;
}

.login a {
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-size: calc(16 / 16 * 1rem);
}

.mensagem__erro {
    font-size: calc(14 / 16 * 1rem);
    font-weight: bold;
    margin-top: -10px;
    color: red;
    text-align: center;
}

