body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  padding: 50px;
}
@media (max-width: 768px) {
  body {
    height: 100vh;
    padding: 25px;
    background-image: linear-gradient(248deg, rgb(43, 177, 178), rgb(37, 83, 179));
  }
}

.webinar-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 768px) {
  .webinar-section {
    flex-direction: column;
    height: auto;
    margin-top: 40px;
  }
}
.webinar-section .left {
  flex: 1;
  color: white;
  background-image: linear-gradient(248deg, rgb(43, 177, 178), rgb(37, 83, 179));
  background-color: transparent;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .webinar-section .left {
    background-image: none;
    background-color: transparent;
    padding: 20px 0;
  }
}
.webinar-section .left h1 {
  margin: 0;
  font-size: 42px;
}
.webinar-section .left p.subtitle {
  margin: 10px 0 30px;
  font-size: 16px;
}
.webinar-section .left .detail-block {
  margin-bottom: 25px;
}
.webinar-section .left .detail-block span {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  color: #a0c7e6;
  margin-bottom: 5px;
}
.webinar-section .left .detail-block p {
  font-size: 20px;
  margin: 0;
  white-space: pre-line;
}
.webinar-section .left .register-btn {
  background: white;
  color: black;
  font-weight: bold;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 5px;
}
.webinar-section .right {
  flex: 1;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .webinar-section .right {
    height: 300px;
    flex: none;
    background-position: bottom;
  }
}/*# sourceMappingURL=webinar-announcement.css.map */