@font-face {
    font-family: 'walsheim'; /* Nombre personalizado para la fuente */
    src: url('/fonts/GTWalsheimPro-Regular.ttf') format('truetype'); /* Ruta de la fuente y formato */
    font-weight: bold; /* Opcional, puedes ajustarlo */
    font-style: normal;  /* Opcional, puedes cambiar a itálico si tienes esa versión */
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'walsheim';
  background: #f8f8f8;
  color: #333;
  overflow-x: hidden; /* evita scroll horizontal fantasma */
}

/* Contenedor general en grid */
.container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
}

.form-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

/* Caja principal */
.form-box {
  background: #FFAB4E;
  border-radius: 0px 60px 0 60px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  z-index: 2;
}

.form-box label {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ffffff; /* mejor contraste que #cacaca */
}

.form-box h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.form-box h3 {
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: #777;
}

.form-box input[type="text"],
.form-box input[type="number"],
.form-box input[type="email"] {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 1rem;
}

.form-box button {
  width: 100px;
  padding: 0.8rem;
  margin-top: 1rem;
  background: #000000;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-box button:hover {
  background: #ef2bc1;
  color: #ffffff; /* mejor contraste con el amarillo */
}

.form-decor {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 130px;
  height: auto;
  pointer-events: none; /* no bloquea clics */
  z-index: 10;
}

/* Decoraciones alineadas al form-box */
.decor-top {
  width: 100%;
  max-width: 400px;
  pointer-events: none;
  z-index: 1;
}

.decor-bottom {
  width: 100%;
  max-width: 400px;
  pointer-events: none;
  z-index: 1;
}
