body {
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  min-height: 100vh;
  background-color: #fff;
  margin: 0;
}

.login-container {
  background-color: #fff;
  padding: 50px 70px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 500px;
  text-align: center;
  margin: 50px 0px;
}

.login-container h2 {
  margin-bottom: 20px;
  color: #333;
}

.button-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  padding: 50px 70px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 400px;
  text-align: center;
  margin: 50px 0px;
}

button {
  background-color: #238e52;
  color: white;
  padding: 15px 26px 17px 26px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 300px;
  font-size: 16px;
  transition: all 0.25s ease-out;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

section .button-container a {
  text-decoration: none;
  width: 300px;
}

button:hover {
  position: relative;
  top: -2px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.form-group {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.form-group label {
  min-width: 100px;
  margin-bottom: 0;
  margin-right: 10px;
  color: #555;
  text-align: right;
}

.form-group input[type="text"],
.form-group input[type="password"] {
  width: 350px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #f4f4f4;
  margin-left: 0;
}

.form-group button {
  background-color: #238e52;
  color: white;
  padding: 15px 26px 17px 26px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 50%;
  font-size: 16px;
  transition: all 0.25s ease-out;
  display: block;
  margin: 0 auto;
}

.login-container .form-group:last-child {
  justify-content: center;
}

.form-group button:hover {
  position: relative;
  top: -2px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

header {
  display: flex;
  align-items: center;
  margin-top: 0px;
  margin-bottom: 5px;
  background-color: #fff;
  width: 100%;
}

header img {
  height: 80px;
  margin: 20px;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f4f4f4;
}

section h3 {
  margin: 0 auto;
  margin: 40px 160px 20px 160px;
  text-align: center;
}

@font-face {
  font-family: "Epilogue";
  src: url("../fonts/epilogue-2/Epilogue-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

footer hr {
  color: #238e52;
  height: 1px;
}

footer img {
  max-width: 15%;
  height: auto;
}

.footer {
  border-top: 2px solid #008000;
  background-color: #f9f9f9;
  padding: 30px 15px;
  font-family: "Epilogue", sans-serif;
  color: #333;
}

.logo {
  max-width: 150px;
  margin-bottom: 10px;
}

.slogan {
  font-style: italic;
  margin-bottom: 20px;
}

.contacto h3 {
  color: #000;
  margin-bottom: 10px;
}

.contacto h3 {
  margin-top: 20px;
}

.contacto p {
  margin: 10px 0;
}

footer h5 {
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.footer-container a {
  text-decoration: none;
  color: #333;
}

.social {
  font-size: 22px;
  color: #000;
  margin: 0 10px;
  text-decoration: none;
}

.redes {
  text-align: center;
  margin-top: 30px;
}

.redes h2 {
  color: #008000;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.iconos-redes {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #54ac9a;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social:hover {
  background-color: #cae6d5;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 30px;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}
.disabled {
cursor: not-allowed !important;
background-color:#adadad !important;
}