.elementor-7340 .elementor-element.elementor-element-ff4cbe7{--display:flex;}.elementor-7340 .elementor-element.elementor-element-ff4cbe7:not(.elementor-motion-effects-element-type-background), .elementor-7340 .elementor-element.elementor-element-ff4cbe7 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-9e34f5e );}/* Start custom CSS for html, class: .elementor-element-097b85f */* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background: #f4f6f8;
}

/* MAIN WRAPPER */
.cenus-wrapper .main {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

/* WRAPPER FOR LEFT + CONTAINER TO MATCH DIMENSIONS */
.cenus-wrapper .form-wrapper {
  display: flex;
  width: max-content; /* width fits content */
}

/* LEFT BANNER */
.cenus-wrapper .left {
  background: linear-gradient(135deg,#0b3d91,#1e3a8a,#0a0f1c);
  color: white;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 12px 0 0 12px;

  /* MATCH RIGHT WIDTH */
  flex: 1;
}

/* LEFT TEXT */
.cenus-wrapper .left h1 {
  font-size: 36px;
  color: white;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 15px;
}

.cenus-wrapper .left p {
  margin-bottom: 25px;
}

.cenus-wrapper .left ul {
  list-style: none;
}

.cenus-wrapper .left li {
  margin-bottom: 10px;
}

/* RIGHT CONTAINER */
.cenus-wrapper .right {
  display: flex;
  flex: 1; /* same width as left */
}

.cenus-wrapper .container {
  background: white;
  padding: 35px;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;

  /* make left and right equal height */
  width: 100%;
}

/* HEADINGS */
.cenus-wrapper h1 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.cenus-wrapper h2 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
}

/* INPUTS */
.cenus-wrapper input {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* ROW */
.cenus-wrapper .row {
  display: flex;
  gap: 10px;
}

.cenus-wrapper .row .field {
  flex: 1;
}

/* PLAN */
.cenus-wrapper .plan {
  border: 2px solid #eee;
  padding: 14px;
  border-radius: 8px;
  margin-top: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.cenus-wrapper .plan.active {
  border-color: #dd2476;
  background: #fff0f5;
}

/* PAYMENT */
.cenus-wrapper .payment-methods {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.cenus-wrapper .payment-option img {
  width: 80px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cenus-wrapper .payment-option.active img {
  transform: scale(1.15);
}

/* BUTTON */
.cenus-wrapper button {
  width: 100%;
  padding: 14px;
  margin-top: 25px;
  border: none;
  border-radius: 50px;
  background: #606161;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.cenus-wrapper button:hover {
  opacity: 0.9;
}

/* TOGGLE LINK */
.cenus-wrapper .toggle-link {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #dd2476;
  cursor: pointer;
  text-decoration: underline;
}

/* FORGOT PASSWORD */
.cenus-wrapper .forgot-password {
  text-align: right;
  font-size: 13px;
  margin-top: 6px;
  color: #dd2476;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cenus-wrapper .form-wrapper {
    flex-direction: column;
  }

  .cenus-wrapper .left,
  .cenus-wrapper .right {
    width: 100%;
    border-radius: 12px 12px 0 0;
  }

  .cenus-wrapper .container {
    border-radius: 0 0 12px 12px;
    margin-top: 20px;
  }
}/* End custom CSS */