.login-card-container {
  width: 560px;
  max-width: 90%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-self: center;
  background-color: white;
  border-radius: 20px;
  justify-self: center;
  align-items: center;
  margin: 100px auto 80px auto;
}

.login-card-container h1 {
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
}

.formItem {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  width: 100%;
}

.formItem label {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 500;
}

.formItem input {
  background-color: #ebebeb;
  border: 1px solid transparent;
  padding: 10px;
  border-radius: 5px;
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Roboto";
}

.formItem input:focus {
  border: 1px solid rgba(67, 98, 5, 1);
  outline: none;
}

.optionLinks {
  width: 100%;
  gap: 20px;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.optionLinks a {
  color: black;  
  text-decoration: underline !important;
  font-weight: 700;
  cursor: pointer;
}

.login-card-container button {
  align-self: center;
}

/* RESPONSIVIDADE */

@media (max-width: 1053px) {
  .login-card-container {
    margin: 100px 0 180px 0;
  }
}

@media (max-width: 991px) {
  .login-card-container {
    margin: 100px 0 20px 0;
  }
}

@media (min-width: 1515px) {
  .login-card-container {
    margin: 100px 0 130px 0;
  }
}

@media (min-width: 3100px) {
  .login-card-container {
    margin: 100px 0 200px 0;
  }
}