/* screen - sign-up */

.sign-up {
  align-items: center;
  background-color: var(--white);
  display: flex;
  /* height: 100vh; */
  justify-content: center;
  width: 100%;
  position: relative;
}

.sign-up .form {
  display: flex;
  flex-direction: column;
  /* gap: 6px; */
}

.sign-up .row {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  position: relative;
  width: 100%;
}

.sign-up .row-checkbox {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  gap: 3px;
  position: relative;
  width: 100%;
  margin: 15px 0;
}

.sign-up .full-width {
  width: 100%;
}

.sign-up .half-width {
  width: 48.9%;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
    gap: 15px;
  }

  .sign-up .half-width {
    width: 100%;
  }
}

.sign-up .section {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-grow: 1;
  min-width: 480px;
  position: relative;
}

@media (max-width: 1024px) {
  .sign-up .section {
    min-width: auto;
  }
}

.sign-up .container {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  padding: 0px 52px;
  position: relative;
  width: 100%;
}

@media (max-width: 1024px) {
  .sign-up .container {
    padding: 0px 12px;
  }
}

.sign-up .social-button-sign-up {
  align-items: center;
  align-self: stretch;
  background-color: var(--chambray);
  border: 1px solid;
  color: var(--white);
  border-color: var(--iron);
  border-radius: 8px;
  box-shadow: 0px 1px 2px #0a0c120d, inset 0px -2px 0px #0a0c120d, inset 0px 0px 0px 1px #0a0c122e;
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
  position: relative;
  width: 100%;
}

.sign-up .social-button-sign-up:hover {
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
  transform: scale(1.01);
  transition: all 0.2s ease;
}

@media (max-width: 1024px) {
  .sign-up .section-1 {
    display: none;
  }
}

.sign-up .content-1 {
  align-items: flex-start;
  gap: 80px;
}

@media (min-width: 768px) {
  .sign-up .content-1 {
    max-width: 100%;
    padding: 0 40px;
  }
}

.sign-up .logo {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  flex: 0 0 auto;
  position: relative;
  width: 156px;
}

.sign-up .logo-wrap {
  height: 32px;
  position: relative;
  width: 156px;
}

.sign-up .header {
  align-items: center;
  align-self: stretch;
  background-color: transparent;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 24px;
  position: relative;
  width: 100%;
}

.sign-up .text-and-supporting-text {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 12px;
  position: relative;
  width: 100%;
}

.sign-up .text-2 {
  align-self: stretch;
  color: var(--mirage);
  font-weight: 600;
  line-height: 44px;
  margin-top: -1.00px;
  position: relative;
}

.sign-up .supporting-text {
  align-self: stretch;
  color: var(--scarpa-flow);
  font-weight: 400;
  line-height: 24px;
  position: relative;
}

.sign-up .content-2 {
  align-items: center;
  align-self: stretch;
  border-radius: 12px;
  gap: 24px;
}

.sign-up .frame-5 {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex-direction: row;
  flex: 0 0 auto;
  gap: 20px;
  position: relative;
  width: 100%;
}

@media (max-width: 1024px) {
  .sign-up .frame-5 {
    flex-direction: column;
  }
}

.sign-up .form {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-grow: 1;
  gap: 15px;
  position: relative;
  width: 100%;
}

.sign-up .input {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 6px;
  position: relative;
  /* width: 100%; */
}

.sign-up .input-1 {
  align-self: stretch;
  background-color: var(--white);
  border: 1px solid;
  border-color: var(--iron);
  border-radius: 8px;
  box-shadow: 0px 1px 2px #0a0c120d;
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  width: 100%;
}


.sign-up .content {
  align-items: center;
  display: flex;
  flex: 1;
  flex-grow: 1;
  gap: 8px;
  position: relative;
}

.sign-up .text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: var(--pale-sky);
  display: -webkit-box;
  flex: 1;
  font-weight: 400;
  line-height: 24px;
  margin-top: -1.00px;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
}

.sign-up .label-1 {
  color: var(--outer-space);
  font-weight: 500;
  line-height: 20px;
  margin-top: -1.00px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.sign-up .label-2 {
  color: var(--outer-space);
  font-weight: 500;
  line-height: 20px;
  margin-top: -1.00px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.sign-up .label-3 {
  color: var(--outer-space);
  font-weight: 500;
  line-height: 20px;
  margin-top: -1.00px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.sign-up .label-4 {
  color: var(--outer-space);
  font-weight: 500;
  line-height: 20px;
  margin-top: -1.00px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.sign-up .label-5 {
  color: var(--outer-space);
  font-weight: 500;
  line-height: 20px;
  margin-top: -1.00px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}



.sign-up .checkbox {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  position: relative;
}

.sign-up .input-2 {
  display: inline-flex;
  justify-content: center;
  padding: 2px 0px 0px;
}

.sign-up .text-and-supporting-text-1 {
  align-items: flex-start;
  display: inline-flex;
}

.sign-up .text-3 {
  color: var(--outer-space);
  font-weight: 500;
  line-height: 20px;
  margin-top: -1.00px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.sign-up .buttons-button {
  align-items: center;
  align-self: stretch;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 6px;
  justify-content: center;
  position: relative;
}

.sign-up .text-1 {
  color: var(--chambray);
  font-weight: 600;
  line-height: 20px;
  margin-top: -1.00px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.sign-up .image-1 {
  height: 64px;
  object-fit: cover;
  position: relative;
  width: 236px;
}

.sign-up .actions {
  align-items: flex-end;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 16px;
  position: relative;
  width: 100%;
}

.sign-up .buttons-button-1 {
  align-self: stretch;
  margin-bottom: -3.00px;
  margin-left: -2.00px;
  margin-right: -2.00px;
  margin-top: -1.00px;
  width: 100%;
}

.sign-up .row-1 {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  gap: 4px;
  justify-content: center;
  position: relative;
  width: 100%;
}

.sign-up .text-4 {
  color: var(--scarpa-flow);
  font-weight: 400;
  line-height: 20px;
  margin-top: -1.00px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.sign-up .buttons-button-2 {
  align-items: center;
  display: inline-flex;
  gap: 6px;
  justify-content: center;
}

.sign-up .footer {
  align-items: flex-end;
  align-self: stretch;
  background-color: transparent;
  display: flex;
  height: 96px;
  padding: 32px;
  position: relative;
  width: 100%;
}

@media (max-width: 1024px) {
  .sign-up .footer {
    justify-content: center;
  }
}

.sign-up .text-5 {
  color: var(--scarpa-flow);
  font-weight: 400;
  line-height: 20px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.sign-up .input-form {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 6px;
  position: relative;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  background-color: var(--white);
  border: 1px solid;
  border-color: var(--iron);
}

.sign-up button {
  width: 100%;
  border: none;
  outline: none;
}

.sign-up .section-1 {
  align-self: stretch;
  background-image: url(../../assets/images/landing/section-3.svg);
  background-position: 50% 50%;
  background-size: cover;
  flex: 1;
  flex-grow: 1;
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

@media (max-width: 1024px) {
  .sign-up .section-1 {
    display: none;
  }
}

.sign-up .container-1 {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: center;
  padding: 0px 64px;
  position: relative;
  /* top: 198px; */
  width: 720px;
}

.sign-up .x32-screen-mockup {
  align-self: stretch;
  border: 4px solid;
  border-color: var(--mirage);
  border-radius: 8px;
  height: 390px;
  margin-left: -4.00px;
  margin-right: -4.00px;
  margin-top: -4.00px;
  position: relative;
  width: 100%;
}

.sign-up .mockup-container {
  border-radius: 8px;
  height: 382px;
  position: relative;
  width: 592px;
}

.sign-up .mockup-shadow {
  background-color: var(--black);
  box-shadow: 0px 4px 4px -2px #0a0c120a, 0px 24px 48px -12px #0a0c122e;
  height: 382px;
  left: 24px;
  position: absolute;
  top: 0;
  width: 544px;
}

.sign-up .screen-mockup-replace-fill {
  background-image: url(../../assets/images/landing/screen-mockup--replace-fill--2.png);
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 8px;
  height: 382px;
  left: 0;
  position: absolute;
  top: 0;
  width: 592px;
}

.sign-up .text-and-supporting-text-2 {
  align-items: center;
  display: flex;
  gap: 8px;
  width: 400px;
}

.sign-up .text-6 {
  color: var(--white);
  font-weight: 500;
  line-height: 30px;
  margin-top: -1.00px;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: fit-content;
}

.sign-up .supporting-text-1 {
  align-self: stretch;
  color: var(--wistful);
  font-weight: 500;
  line-height: 24px;
  position: relative;
  text-align: center;
}

.sign-up .buttons-button-3 {
  flex: 0 0 auto;
  position: relative;
}

.sign-up .content-3 {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
  /* max-width: 750px; */
  /* width: 100%; */
  /* min-width: 540px; */
}

@media (max-width: 768px) {
  .sign-up .content-3 {
    width: 100%;
  }
}

.sign-up .input-3 {
  align-items: center;
  flex: 0 0 auto;
  height: 44px;
  position: relative;
}

.sign-up .text-and-supporting-text-3 {
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
}


.package-summary {
  margin: 1rem 0;
  padding: 1rem;
  background-color: #f9fafb;
  border-radius: 8px;
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e7eb;
}

.summary-table tr {
  border-bottom: 1px solid #e5e7eb;
  height: 50px; /* Fixed height for rows */
}

.summary-table tr:last-child {
  border-bottom: none;
}

.summary-table td {
  width: 50%; /* Equal width columns */
  padding: 12px 20px;
  vertical-align: middle; /* Vertical centering */
  text-align: center; /* Horizontal centering */
}

.label-cell {
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #f3f4f6;
  border-right: 1px solid #e5e7eb;
}

.value-cell {
  color: #111827;
  font-size: 0.875rem;
  background-color: #ffffff;
}


.package-summary {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background-color: #f9fafb;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}

.package-summary.show {
  opacity: 1;
  transform: translateY(0);
}

.summary-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.summary-table tr {
  transition: background-color 0.2s ease;
}

.summary-table tr:hover {
  background-color: #f3f4f6;
}

.summary-table td {
  padding: 1rem 1.5rem;
  width: 50%;
  vertical-align: middle;
}

.label-cell {
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #f8fafc;
  border-right: 1px solid #e5e7eb;
}

.value-cell {
  color: #111827;
  font-size: 0.875rem;
  text-align: center;
  font-weight: 500;
}

.summary-table tr:not(:last-child) td {
  border-bottom: 1px solid #e5e7eb;
}

.label-wrapper {
  margin: 8px 0;
}

.error {
  color: #dc3545;
  font-size: 0.875rem;
  margin: 0 0 0.5rem;
  display: block;
}
.input {
  margin-bottom: 0.5rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 2% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 95%;
  max-width: 800px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  position: relative;
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px;
  position: relative;
}

.modal-footer {
  padding: 20px;
  border-top: 1px solid #e5e7eb;
  text-align: right;
  margin-top: 20px;
}

.modal-ok-button {
  background-color: var(--chambray);
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  width: auto !important;
}

.modal-ok-button:hover {
  background-color: var(--chambray);
  opacity: 0.9;
  transform: translateY(-1px);
}

/* RTL Support */
[dir="rtl"] .close {
  float: left;
  font-size: xx-large;
  cursor: pointer;
}




/* Terms and Conditions Modal Styles */
.term-popup {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.term-popup-header {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  z-index: 10;
}

.term-popup-header h2 {
  margin-bottom: 0.5rem;
}

.term-popup-content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  height: calc(100% - 60px);
}

.term-section {
  margin-bottom: 2rem;
  opacity: 1 !important;
  transform: none !important;
}

.section-title {
  margin-bottom: 1rem;
  color: #111827;
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.subsection {
  margin: 1.5rem 0;
}

.subsection h4 {
  margin-bottom: 0.75rem;
  color: #374151;
}

.text-lgregular {
  margin-bottom: 0.75rem;
  color: #4B5563;
  line-height: 1.5;
}

.term-divider {
  height: 1px;
  background-color: #e5e7eb;
  margin: 2rem 0;
}

/* Scrollbar Styles */
.term-popup-content::-webkit-scrollbar {
  width: 6px;
}

.term-popup-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.term-popup-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.term-popup-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}


.display-mdsemibold {
  font-family: var(--font-family-montserrat);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.72px;
}

.display-smsemibold {
  font-family: var(--font-family-montserrat);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
}




@media (max-width: 768px) {
  .modal-content {
    margin: 0;
    height: 100vh;
    width: 95%;
    border-radius: 0;
  }

  .term-popup-content {
    padding: 1rem;
    -webkit-overflow-scrolling: touch; /* Improve mobile scrolling */
  }
}

/* Remove any animation that might interfere */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}