.ilola-bridge-form > div {
    position: relative;
}
.ilola-bridge-form input[type="text"] {
  border: 1px solid #000;
  border-radius: 0;
  margin-bottom: 20px;
  padding: 13px;
  width: 100%;
}
.ilola-bridge-form input[type="text"] + label {
  position: absolute;
  top: -12px;
  left: 15px;
  background-color: #fff;
  padding: 2px;
}
.ilola-bridge-form > p{
    margin-bottom: 20px;
}
body .ilola-bridge-form a{
    text-decoration: underline;
}
.ilola-bridge-form input[type="checkbox"] {
  margin: 0 3px 0;
  border: 1px solid #000;
}

.ilola-bridge-form .signup-message {
    margin-top: 10px;
    color: #cc0000;
}

.ilola-bridge-form button {
  border: 1px solid #000;
  min-height: 50px;
  min-width: 240px;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: uppercase;
  background-color: #CBEEDC;
  padding: 0;
}
.ilola-bridge-form button:hover {
    border: 1px solid #cbeedc !important;
}
.ilola-bridge-form button:disabled {
    opacity: 0.5;
    border: 1px solid #000 !important;
}

span.wait-loading span {
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
    animation: wave 1.2s infinite ease-in-out;
}
.wait-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.wait-loading span:nth-child(1) {
    animation-delay: 0s;
}

.wait-loading span:nth-child(2) {
    animation-delay: 0.2s;
}

.wait-loading span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes wave {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}
@media screen and (min-width: 440px) {
    .ilola-bridge-form.split-layout > div:first-child,
    .ilola-bridge-form.split-layout > div:nth-child(2) {
        width: 49%;
        display: inline-block;
    }
    .ilola-bridge-form.split-layout > div:nth-child(2) {
        float: right;
    }

}