body {
    font-family: Arial, sans-serif, Montserrat;
    background-color: #f0f2f5;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Impede a rolagem */
    background-image: url('/static/global/assets/Vector.svg');
    background-repeat: no-repeat;
    background-position:left;
    background-size: 664.77px;
    background-position-y: bottom;
}

.main-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    bottom: 0;
    position: fixed;
}

.image-logo-container {
    position: fixed;
    left: 5%;
    bottom: 0; /* Fixa a imagem ao fundo da página */
}

.image-logo-container img{
    bottom: 0;
    position: fixed;
}

.login-container {
    position: fixed;
    right: 15%;
    top: 30%;
    width: 310px;
    text-align: center;
}


h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.form-group input {
    padding: 0.8rem;
    border: 1px solid #ddd;

}

.form-group .error-message {
    color: #ff0000;
    font-size: 0.875rem;
    display: block;
    margin-top: 0.25rem;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    width: 111px;
    height: 36px;
}

button:hover {
    background-color: #0056b3;
}

input{
    background-color: #D9D9D9;
    border-radius: 10px;
    align-items: center;
    
}

.input-container {
    position: relative;
    
}


.user-input i {
    position: absolute;
    left: 10px;
    top: 40%;
    width: 0;
    transform: translateY(-50%);
    font-size: 20px;
    color: #273B5C;
    cursor: pointer;
    font-size: 22px;
    
}

.password-input i {
    position: absolute;
    right: 35px;
    width: 0;
    top: 12%;
    transform: translateY(-50%);
    color: #273B5C;
    cursor: pointer;
    font-size: 22px;
    opacity: 0.8;
}

.bx-show::before {
    font-size: 22px;
    color: #273B5C;
    cursor: pointer;
    top: 12%;
    position: absolute;
    
}

.password-input input, .user-input input {
    padding-left: 35px;
    padding-right: 30px;
    width: 100%;
    box-sizing: border-box;
    background-color: #D9D9D9;
    border-radius: 10px;
}

.div-lock i{
    position: absolute;
    left: 10px;
    top: 30%;
    width: 0;
    transform: translateY(-50%);
    color: #273B5C;
    cursor: pointer;
    font-size: 23px;
}

#id_username::placeholder,
#id_password::placeholder {
    padding-left: 10px;
}

i.bx-low-vision{
    font-size: 20px;
    top: 30%;
    position: absolute;
}

a {
    text-decoration: none;
    color: #007bff;
    padding: 10px;
}

a:hover {
    text-decoration: underline;
}

.span-access-login{
    color: #273B5C;
    padding-bottom: 20px;
    font-size: 18px;
    font-family: Montserrat;
}

.span-access-login span{
    color: #273B5C;
}

.text-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-with-lines::before,
.text-with-lines::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #273B5C;
    margin: 0 6px;
}

.btn{
    width: 310px;
}