/* googleformstyle.css */

body {
  margin: 0;
  padding: 0;
  background-color: #a7eaff; /* Fondo muy suave */
  font-family: 'Roboto', sans-serif;
}

#divLoading{
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(254,254,255, .65);
  z-index: 9999;
  display: none;
}
#divLoading img{
  width: 50px;
  height: 50px;
}


.form-container {
  max-width: 600px;
  margin: 0px auto 40px auto; /* poco margen arriba */
  padding: 0px 40px 30px 40px; /* SIN padding arriba */
  border-radius: 8px;
   background: transparent;
  box-shadow: none !important;
  overflow: hidden; /* para que bordes redondeados se apliquen a la imagen */
 
  
}

.form-banner {
  width: 100%;
  height: auto; /* mantiene proporci贸n */
  display: block;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-bottom: 10px;
}




.form-header img {
  max-height: 80px;
}

.form-header h3 {
  color: #202124;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-header p {
  color: #5f6368;
  font-size: 1rem;
}

.required {
  color: #d93025; /* rojo Google */
}

.question-block {
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 10px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgb(60 64 67 / 0.15);
  transition: box-shadow 0.2s ease-in-out;
}

.question-block:focus-within {
  box-shadow: 0 0 0 2px #1a73e8;
  border-color: #1a73e8;
}

.question-block label {
  font-weight: 500;
  font-size: 1rem;
  color: #202124;
  display: block;
  margin-bottom: 8px;
}

.form-control,
.form-select {
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #dadce0;
  padding: 10px 12px;
  box-shadow: none !important;
  transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 0 2px rgb(26 115 232 / 0.3);
  outline: none;
}

.btn-primary {
  background-color: #1a73e8;
  border-color: #1a73e8;
  font-weight: 500;
  font-size: 1.05rem;
  box-shadow: 0 3px 8px rgb(26 115 232 / 0.4);
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #185abc;
  border-color: #185abc;
  box-shadow: 0 4px 12px rgb(24 90 188 / 0.6);
}


/* ESTILO DEL BOTON DE SELECI脫N MULTIPLE */
.checkbox-group label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 500;
    cursor: pointer;
  }
  .checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    flex-shrink: 0;
  }
  #txtMedioOtro {
    margin-left: 30px;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: calc(100% - 40px);
    max-width: 300px;
    display: none;
  }
  
  
  /* ESTILO DEL BOTON DE SELECIÓN MULTIPLE en la edad */
   .edad-wrapper {
    background-color: #f8f9fa; /* Fondo suave */
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }

  .edad-label {
    text-align: center;
    font-weight: bold;
    min-width: 100px;
  }

  .edad-opciones {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .edad-item {
    text-align: center;
  }

  .edad-item label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
  }

  .edad-item input[type="radio"] {
    transform: scale(1.3);
    cursor: pointer;
  }