body {
    display: flex;
    background-color: #ffffff;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: "League Spartan", sans-serif;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 35%;
    height: 100%;
    padding: 10px;
    border-right: 1px solid #333333;
    background: linear-gradient(183deg, #63ed0f 0%, #39b300 60%, #1c6300 100%);
}

.image-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    height: 100%;
    width: 65%;
}

.login-form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 250px;
    padding: 20px;
    background-color: #ffffff10;
    border: 2px solid #ffffff30;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.login-form form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-form h2 {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff; /* #1f293f */
    text-align: center;
}

.login-form h2:hover {
    color: #dbdbdb;; /* #1f293f */
}

.login-form input {
    width: 300px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #ffffff; /* Cor de fundo para os inputs */
    box-sizing: border-box;
}

.options {
    display: flex;
    width: 100%;
    justify-content: space-around;
    text-align: justify;
    align-items: center;
    margin-top: 20px;
}

.remember-me {
    display: flex;
    width: 25px;
    align-items: center;
    white-space: nowrap;
    font-size: 12px;
    color: #ffffff;
}

.forgot-password {
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px; /* Ajuste da margem para alinhar com a checkbox */
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-form button {
    width: 300px;
    padding: 12px;
    background-color: #000; /* Cor de fundo unificada para o botão */
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-form button:hover {
    background-color: #333333; /* Cor de fundo para o hover do botão */
}

.lembrar_senha {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.logo-ja-fiz {
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-height: 350px;
    max-width: 100%;
}