.elementor-874 .elementor-element.elementor-element-cc558dc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:30px;--padding-bottom:30px;--padding-left:0px;--padding-right:0px;}.elementor-874 .elementor-element.elementor-element-9741362{width:var( --container-widget-width, 80% );max-width:80%;--container-widget-width:80%;--container-widget-flex-grow:0;}.elementor-874 .elementor-element.elementor-element-9741362.elementor-element{--align-self:center;}body.elementor-page-874:not(.elementor-motion-effects-element-type-background), body.elementor-page-874 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#DFE7E8;}@media(max-width:767px){.elementor-874 .elementor-element.elementor-element-9741362{--container-widget-width:342px;--container-widget-flex-grow:0;width:var( --container-widget-width, 342px );max-width:342px;}}/* Start custom CSS for html, class: .elementor-element-9741362 */.signup-container {
  display: flex;
  width: 100%;
  max-width: 1000px;
  min-height: 100vh; /* full page height */
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.signup-left,
.signup-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.signup-left {
  background: #7a0a14;
}

.signup-left img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps image proportional */
}

.signup-right {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.bonus-logo img {
  width: 120px;
  margin-bottom: 15px;
}

.signup-right h1 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #111;
}

.signup-right form {
  width: 100%;
}

.signup-right input {
  width: 100%;
  padding: 14px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}

.signup-right button {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  background: #b3002d;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.signup-right button:hover {
  background: #900024;
}

.login-text {
  margin-top: 15px;
  font-size: 14px;
}

.login-text a {
  color: #b3002d;
  text-decoration: none;
  font-weight: bold;
}

/* ✅ Mobile responsive */
@media (max-width: 768px) {
  .signup-container {
    flex-direction: column; /* stack vertically */
    min-height: auto;
  }

  .signup-left {
    display: none; /* hide image on mobile */
  }

  .signup-right {
    width: 100%;
    padding: 30px 20px;
  }
}/* End custom CSS */