.form-label {
  @apply block text-sm font-medium text-gray-700 mb-2;
.form-label {
  display: block;
  font-size: 0.875rem;
}
}
.error {
  color: #ef4444; /* red-500 */
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

body {
  font-family: "Poppins", sans-serif;
}

.header-css {
  background-color: #05659e;
  color: white;
  padding: 20px;
  text-align: center;
}

.footer-css {
  background-color: #05659e;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 79px;
}

.title-form {
  font-size: 2rem;
  font-weight: bold;
  color: white;
}

.form-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.5rem;
  font-size: 1rem;
  background-color: white;
}

.second-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #05659e;
}

.description-text {
  font-size: 1rem;
  color: #555;
  margin: 0 auto;
  text-align: justify;
}

.btn-primary {
  background-color: #05659e;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.img-pilates {
  width: 19%;
  border-radius: 12px;
  margin: 1rem auto;
  display: block;
}

@media (max-width: 600px) {
  html, body {
    margin: 0;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
    overflow-x: hidden; /* evita el scroll horizontal causado por elementos que sobresalgan */
  }

  .img-pilates {
    width: 70%;
    max-width: 420px;
  }

  .title-form {
    font-size: 1.7rem;
  }
}
.fecha {
  width: 100%;
  background-color: #f3f4f6; /* gray-100 */
  border-radius: 0.75rem; /* rounded-xl */
  padding: 1rem;
  color: #374151; /* gray-700 */
  outline: none;
  transition: all 0.2s ease;
}

.fecha:focus {
  box-shadow: 0 0 0 4px rgba(156,163,175,0.2); /* approximate focus ring for gray-300 */
}

@media (max-width: 600px) {
  .fecha {
    width: 90%;
    max-width: 360px;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    display: block;
    margin: 0.5rem auto;
  }
}