.webinar {
	min-height: 430px;
	margin: 10px 0;
	border: solid 1px;
	padding:6px;
	float:left;
	width:45%;
	margin:5px;
}
.programa {
	margin:5px;
	padding:4px;
	background-color:#eeeeee
}
.logo {
	margin:5px;
	vertical-align:middle;
	display:inline;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}
.modal-overlay.is-open {
  display: flex;
}
.modal-dialog {
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease-out;
}
@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  padding: 0;
  color: #666;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #000;
}
#webinarModalTitle {
  margin-top: 0;
  margin-bottom: 30px;
  color: #0095db;
  font-size: 24px;
  font-weight: 600;
}
.acces-btn {
  border: 0;
  background-color: #0095db;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 149, 219, 0.25);
  width: 100%;
}
.acces-btn:hover {
  background-color: #0077ad;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 149, 219, 0.35);
}
.acces-btn:active {
  transform: translateY(0);
}
.webinar-access-form table {
  width: 100%;
  border-collapse: collapse;
}
.webinar-access-form table tr td {
  padding: 16px 0;
  vertical-align: top;
}
.webinar-access-form table tr td:first-child {
  width: 35%;
  padding-right: 20px;
}
.webinar-access-form table tr td:first-child p {
  margin: 0;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}
.webinar-access-form input[type="text"],
.webinar-access-form input[type="email"],
.webinar-access-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}
.webinar-access-form input[type="text"]:focus,
.webinar-access-form input[type="email"]:focus,
.webinar-access-form select:focus {
  outline: none;
  border-color: #0095db;
  box-shadow: 0 0 0 3px rgba(0, 149, 219, 0.1);
}
.webinar-access-form input[type="submit"] {
  background-color: #0095db;
  color: #ffffff;
  border: 0;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  margin-top: 20px;
  width: 100%;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 149, 219, 0.25);
}
.webinar-access-form input[type="submit"]:hover {
  background-color: #0077ad;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 149, 219, 0.35);
}
.webinar-access-form input[type="submit"]:active {
  transform: translateY(0);
}
p[style*="color:red"] {
  margin: 8px 0 0 0 !important;
  font-size: 14px !important;
  color: #d32f2f !important;
  font-weight: 500 !important;
}

.video-btn {
  border: 0;
  background-color: #0095db;
  color: #ffffff;
  margin-top:2px;
  padding: 4px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 1px;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 149, 219, 0.25);
  display:inline;
}
.video-btn:hover {
  background-color: #0077ad;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 149, 219, 0.35);
}
.video-btn:active {
  transform: translateY(0);
}