.login-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 30%;
  height: 400px;
  max-width: 1000px; 
  margin: 0 20px; 
}

.loginInputs {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin-bottom: 20px;
  margin-top: 20px;
}

label {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #333;
}

input {
  width: 100%; 
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  border: 2px solid #ddd;
  margin-bottom: 20px;
  max-width: 500px; 
  text-align: center;

}

input:focus {
  outline: none;
  border-color: rgb(202, 24, 24);
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  min-width: 50%;
  margin-top: 20px;
}

.button-login {
  padding: 20px 30px;
  background-color: rgb(202, 24, 24);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%; 
}

.button-login:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(202, 24, 24, 0.6);
}

.button-login:hover {
  transform: scale(1.05);
  background-color: rgb(255, 60, 60);
  box-shadow: 0 4px 15px rgba(202, 24, 24, 0.3);
}

.button-login:active {
  transform: scale(1.05);
  background-color: rgb(180, 24, 24);
}


@media (min-width: 769px) and (max-width: 1226px) {
  .form {
    width: 60%; 
  }
}

/* Responsividade para telas menores que 768px */
@media (max-width: 768px) {
  .form {
    width: 90%; 
    padding: 10px 20px;
    height: 370px;
  }

  input {
    max-width: 100%;
  }
  label {
    display: flex;
    flex-direction: column;
  }

  .buttons {
    width: 30%;
    margin-top: 10px;
  }

  body {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .form {
    width: 100%;
  }
  label{
    font-size: 1rem;
    font-weight: 500;
  }
}

