form#form-webinaire {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
form#form-webinaire input {
  width: 100%;
  padding: 15px 30px;
  border-radius: 50px;
  color: var(--e-global-color-text);
  font-family: "ITC Avant Garde Gothic", Sans-serif;
  font-weight: 500;
}
form#form-webinaire button[type=submit] {
  margin: 30px auto 0;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--e-global-color-accent);
  position: relative;
}
form#form-webinaire button[type=submit]:hover span.icon:before {
  width: calc(100% + 30px);
  animation: none;
}
form#form-webinaire button[type=submit] span.icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--e-global-color-accent);
  border-radius: 50%;
  z-index: 1;
  color: white;
}
form#form-webinaire button[type=submit] span.icon:before {
  --color1: rgba(90, 99, 128, 0.5);
  --color2: rgba(90, 99, 128, 0.3);
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 45px;
  width: 45px;
  transform: translateY(-50%) translateX(-10%);
  border-radius: 50px;
  background-color: rgba(90, 99, 128, 0.3);
  transition: 0.3s ease-out;
  transform-origin: top;
  z-index: -1;
  animation: glow-var 2s ease-out infinite;
}
form#form-webinaire span.error,
form#form-webinaire span.success {
  margin-top: 20px;
  display: block;
  text-align: center;
  font-weight: 600;
}
form#form-webinaire span.error {
  color: rgb(235, 38, 38);
}
form#form-webinaire span.success {
  color: rgb(24, 209, 24);
}
