.auth-container {
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
h1.title-auth {
  color: #FFFFFF;
  font-size: 24px;
  font-family: inter;
  font-weight: bold;
}
.auth-container h1 {
  font-size: 24px;
  color: #00573d; /* Color primario */
  margin-bottom: 10px;
}
p.description-auth {
  color: #fff;
  font-size: 15px;
}
.auth-container p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}
.form-container form label {
  color: #95C83D;
  font-weight: bold;
  font-size: 18px;
}
.auth-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.form-container form input#edit-identifier {
  width: 424px;
  height: 50px;
  border-radius: 50px;
  border: none;
  padding: 0 20px;
}
.auth-submit {
  background-color: #00573d;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}
.form-container form input#edit-identifier::placeholder {
  color: #C0C0C0;
  font-size: 18px;
  font-weight: 400;
}
.auth-submit:hover {
  background-color: #004a32;
}
.error-message {
  color: #fff;
}
.authentication-container {
  width: 544px;
  height: 504px;
  margin: 4rem auto;
  background-color: #2D6750;
  padding: 60px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-container form input#edit-submit {
  width: 145px;
  height: 50px;
  background-color: #95C83D;
  border: none;
  border-radius: 30px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 20px;
  max-height: 100%;
  font-weight: bold;
}
.form-container form {
  display: flex
;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.form-container {
  margin-bottom: 20px;
}
input#edit-submit--2 {
  background: url(/themes/custom/arclad/img/icon-search.png) 0 0 no-repeat;
  border: none;
  padding: 15px;
  font-size: 0;
  z-index: 2;
  position: relative;
  right: 8px;
}
@media (max-width: 768px) {
  .auth-container {
    margin: 20px;
    padding: 15px;
  }
  .authentication-container {
    padding: 24px;
    width: 85%;
    height: 420px;
  }
  .auth-container h1 {
    font-size: 20px;
  }
  .form-container form input#edit-identifier {
    width: 100%;
  }
  .auth-submit {
    padding: 8px;
  }
}
