#logos{
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    background-color: var(--coloracaoPrincipal);
}
#logos > img:nth-child(1) {
  width: 70%;
}

#logos > div {
  width: 100%;
}

#logos > div > img{
    width: 20vw;
}
#formularioDiv{
    width: 45%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

/* Estilo para o formulário */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 300px;
  margin: 1rem;
  font-family: 'Poppins', sans-serif;
}

/* Estilo para os labels */
form label {
  font-size: 0.9rem;
  color: #000;
}

/* Campos de entrada */
form input[type="text"],
form input[type="password"] {
  padding: 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  background-color: #e0e0e0;
  color: #333;
  font-weight: 300;
  outline: none;
}

form input::placeholder {
  color: #999;
  font-weight: 400;
}

/* Botão */
form button {
  padding: 1rem;
  background-color: #1d1d1d;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

form button:hover {
  background-color: #333;
}