/* ==========================================
   ESTILOS DEL FORMULARIO DE REGISTRO SIGNI
   ========================================== */

body {
  margin: 0;
  font-family: "myriad-pro", sans-serif;
  background: #f3f3f3;
  color: #1B2C5F;
}

/* CONTENEDOR PRINCIPAL */
.container-webinar {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* IMAGEN SUPERIOR */
.banner-webinar img {
  width: 100%;
  display: block;
  height: auto;
}

/* CONTENIDO */
.content-webinar {
  padding: 20px 30px 40px;
  text-align: center;
}

.details h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B2C5F;
  margin-bottom: 8px;
}
.details p {
  margin: 0;
  color: #E52929;
  font-weight: 600;
}
.details h3 {
  margin-top: 18px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

/* FORMULARIO */
form {
  margin-top: 20px;
}
.form-grid {
  display: flex;
  flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.form-grid > div{
	width:45%;
	margin-top: 20px;
}
.form-grid .full {
  grid-column: span 2;
}
form label {
  display: block;
  text-align: left;
  font-size: 0.85rem;
  color: #808285;
  margin: 4px 0 2px 5px;
	text-transform: uppercase;
	padding-left: 10px;
	font-weight: 400;
	font-size: 14px;
}
form input {
  width: 90%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 1rem;
}
form button {
  background: #E52929;
  color: #fff;
  font-weight: bold;
	font-size: 18px;
  padding: 10px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s ease;
	width: 100%;
}
form button:hover {
  background: #c81f1f;
}

.form-error {
  color: #c0392b;
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: block;
  font-weight: 500;
}

input.error {
  border-color: #c0392b !important;
  background-color: #ffecec !important;
  transition: all 0.3s ease;
}





/* MENSAJE DE GRACIAS */
#mensaje {
  display: none;
  background: #fff;
  text-align: center;
  padding: 40px 25px 60px;
}
#mensaje p {
  color: #222;
  font-size: 24px;
  margin-bottom: 18px;
  line-height: 1.4;
	font-weight: 300;
}
#mensaje h3 {
  color: #E52929;
  font-size: 50px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .form-grid > div{
    width: 100%;
  }
  .container-webinar {
    margin: 20px;
  }
}

