@charset "UTF-8";
/* Estilos para el modal de éxito */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-dialog {
  margin: auto;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
  min-width: 600px;
  margin: auto;
}

#successModal .modal-content {
  border: 8px solid #BFCC22;
  background-color: #fdfdf6;
  border-radius: 0;
  padding: 40px 20px;
  font-family: "Helvetica Neue", sans-serif;
  color: #333;
}

#successModal h4 {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 20px;
}

#successModal p {
  font-size: 18px;
  margin-bottom: 30px;
}

#successModal .btn-primary {
  background-color: #BFCC22;
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-weight: bold;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

#successModal .btn-primary:hover {
  background-color: #BFCC36;
}

.custom-registration-component {
  width: 100%;
  padding: 40px 0;
  background-color: #f6f6ef;
}

.header-section {
  margin-bottom: 50px;
  padding: 20px 0;
  background-color: #f6f6ef;
}

.main-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #333;
  text-transform: uppercase;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1.4;
  color: #666;
  font-weight: 400;
}

.subtitle-bold {
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1.4;
  color: #666;
  font-weight: 700;
}

.two-column-section {
  margin-bottom: 60px;
}

.left-column {
  padding-right: 30px;
}

.right-column {
  padding-left: 30px;
}

.form-section {
  background: #f6f6ef;
  padding: 30px;
  border-radius: 0;
  height: 100%;
}

.form-description,
.form-description-bold {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.form-description-bold {
  margin-bottom: 20px;
  font-weight: 600;
}

.registration-form .form-group {
  margin-bottom: 15px;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row .form-group {
  padding-right: 5px;
  padding-left: 5px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 14px;
  background-color: #f9f9f9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.form-control:focus {
  border-color: #8bc34a;
  outline: none;
  background-color: white;
}
.form-control::-webkit-input-placeholder {
  color: #999;
  font-size: 14px;
}
.form-control::-moz-placeholder {
  color: #999;
  font-size: 14px;
}
.form-control:-ms-input-placeholder {
  color: #999;
  font-size: 14px;
}
.form-control::-ms-input-placeholder {
  color: #999;
  font-size: 14px;
}
.form-control::placeholder {
  color: #999;
  font-size: 14px;
}

.btn-primary {
  background-color: #8bc34a !important;
  border-color: #8bc34a !important;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary:hover {
  background-color: #7cb342 !important;
  border-color: #7cb342 !important;
  color: white !important;
}

.btn-block {
  width: 100%;
  margin-top: 20px;
}

.image-section {
  text-align: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-image {
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

.bottom-section-title {
  margin-bottom: 40px;
  text-align: center;
  background-color: #f6f6ef;
  padding: 40px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #333;
  text-transform: uppercase;
  background-color: #f6f6ef;
}

.existing-component-section {
  background: white;
  padding: 40px 0;
}

.existing-component-region {
  width: 100%;
}

.existing-component-item {
  margin-bottom: 30px;
}
.existing-component-item:last-child {
  margin-bottom: 0;
}

.optin {
  font-size: 12px;
}

.optin a {
  font-weight: bold;
  text-decoration: none;
  color: black !important;
}
.optin a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .left-column,
  .right-column {
    padding: 0;
    margin-bottom: 30px;
  }
  .main-title {
    font-size: 1.5rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  .form-section {
    padding: 20px;
  }
  .section-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .form-row .form-group {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .main-title {
    font-size: 1.2rem;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
.text-center {
  text-align: center !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.col-md-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}