* {
box-sizing: border-box;
}

body {
font-family: Arial;
background-color: transparent;
margin: 0;
padding: 0;
}



/* Dentro del iframe: soporte_web.html */
#myScreen {
  margin: 10px auto;
  width: 100%;
  max-width: 600px;
  padding: 0 15px;
  box-sizing: border-box;
}


h3 {
text-align: center;
font-weight: 500;
margin-top: 20px;
margin-bottom: 20px;
}


.panel-footer {
background-color: #e7e7e7;
color: black;
margin: 0px;
padding: 15px;
}



.content-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}


/* Input de texto */
.content-form input[type="text"] {
  width: 200px; /* ancho fijo deseado */
  font-size: 16px;
  padding: 10px;
  height: 45px; /* define altura fija */
  box-sizing: border-box;
}

/* Botón mejorado */
.content-form input[type="submit"] {
  flex: 0;
  height: 45px; /* igual que el input */
  padding: 0 20px;
  font-size: 16px;
  background-color: #03c4eb;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.content-form input[type="submit"]:hover {
  background-color: #356187;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


.parrafo-soporte {
 font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;       
  color: #777777;                 
  line-height: 1.5;                  
  max-width: 800px;
  margin: 20px auto;
  text-align: left;
  padding: 0 15px;
  margin-top:40px;
}

.parrafo-soporte:first-of-type {
  margin-top: 50px;
}


/* Media query para móviles */
@media (max-width: 480px) {
  .content-form {
    flex-direction: column;
    align-items: stretch;
  }

  .content-form input[type="text"],
  .content-form input[type="submit"] {
    width: 100%;
    box-sizing: border-box;
  }

  .content-form input[type="submit"] {
    padding: 12px 0;
    white-space: normal;
  }
}



#isl-feedback {
margin: 15px auto 0px auto;
padding: 20px;
border-radius: 5px;
color: #fff;
display:none;
}

.isl-success {
background-color: rgb(92, 184, 92);
}
.isl-error {
background-color: rgb(217, 83, 79);
}
