/* Estilo do container de login */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
    background-color: #f4f4f4;
}

/* Estilo do logo */
.login-logo {
    max-width: 200px;
    max-height: 200px;
    margin-bottom: 20px;
}

/* Estilo do título */
.login-container h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

/* Estilo do formulário */
.login-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
}

/* Estilo dos rótulos */
.login-form label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

/* Estilo dos campos de entrada */
.login-form input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
    width: 100%;
}

/* Estilo do botão */
.login-button {
    padding: 10px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-button:hover {
    background-color: #0056b3;
}

.login-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}
