form {
   padding: 20px;
   border: 5px;
   border-radius: 5px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
input[type="text"], input[type="password"] {
   width: 100%;
   padding: 10px;
   margin: 8px 0;
   border: 1px solid #ccc;
   border-radius: 4px;
   box-sizing: border-box;
}
input[type="submit"] {
   width: 100%;
   background-color: #702826;
   color: white;
   padding: 14px 20px;  
   margin: 8px 0;
   border: none;
   border-radius: 4px;
   cursor: pointer;
}
input[type="submit"]:hover {
   background-color: #4CAF50;
}

/*box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);"*/
.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    background-color: #a1a2a3;
    padding: 20px;
    border: 5px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 220px; /* Definindo a largura máxima */
    max-height: 350px; /* Definindo a altura máxima */
    display: flex; /* Usando flexbox */
    flex-direction: column; /* Colocando os elementos um em cima do outro */
    transition: transform 0.3s ease-in-out;
   /*    align-items: center; /* Centralizando horizontalmente */*/
}

.form-control {
    margin-bottom: 10px; /* Espaçamento entre os campos */
}

form label {
    margin-left: 0px; /* Ajuste para alinhar os labels à esquerda */
    user-select: none;
}

.linhar-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    user-select: none;
}

.floating-button {
  position: fixed;
  border: 5px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.floating-button:hover {
  transform: translateY(-5px);
}