/* Importa a fonte Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

/* Estilo geral */
body.login-page {
    margin: 0;
    padding: 0;
    background-color: #111827;
    color: #ffffff;
    font-family: 'Poppins';
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container principal */
.login-container {
    display: flex;
    flex: 1;
    height: 100%;
}

/* Imagem na lateral esquerda */
.login-image {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.login-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Container do formulário */
.login-form-container {
    flex: 0 0 400px; /* Largura fixa para a área de login */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e1e2f;
}

/* Formulário */
.login-form {
    width: 100%;
    max-width: 350px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.login-logo {
    max-width: 100%;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-label {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    font-weight: 500; /* Adiciona peso para o texto */
}

.form-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    background-color: transparent;
    color: #ffffff;
    font-family: 'Poppins';
}

.form-input::placeholder {
    color: #d1d5db;
}

.form-input:focus {
    outline: none;
    border-color: #007bff;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Poppins';
}

.btn-submit:hover {
    background-color: #0056b3;
}

/* Rodapé */
.footer {
    background-color: #1e1e2f;
    color: #ffffff;
    text-align: center;
    padding: 5px 0; /* Reduzido de 10px para 5px */
    font-size: 12px; /* Diminui o tamanho da fonte */
    font-weight: 300; /* Deixa o texto mais leve */
    font-family: 'Poppins';
}
