body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background-image: url("/static/images/back2.png");
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat; 
    height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.login-container {
    width: 500px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    background-image: url("/static/images/back1.png");
    background-size: cover;
    background-repeat: no-repeat; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    overflow: hidden;
}

.logo {
    width: 350px;
    height: auto;
}


.login-form {
    display: flex;
    flex-direction: column;
}


input[type="text"], input[type="password"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    outline: none;
}

.checkbox-forgot-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
  
.checkbox-container {
    display: flex;
    align-items: center; 
    margin-right: 10px; 
    padding: 20px 0;
}
  
.checkbox-container label {
    color: #3B385B;
    margin-left: 5px;
}
  
.forgot-password {
    color: #3B385B;
}

.button {
    padding: 10px 20px; 
    background-color: #3B385B; 
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out; 
    width: 100%; 
    box-sizing: border-box; 
    border: none;
    border-radius: 5px;
    font-weight: 700;
}

.button:hover {
    background-color: #565085;
}

.signup {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    font-weight: 670;
}

.signup-link {
    color: white;
}

.footer {
    background-color: #3B385B; 
    color: white;
    padding: 13px 0;
    text-align: center;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; 
}

/* Adaptações para responsividade */
@media (max-width: 600px) {
    .login-container {
        width: 90%;
    }

}