* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f5f5;
}

.container {
  /* max-width: 500px; */
  width: 100%;
  /* margin: 0 auto; */
  /* background: white; */
  border-radius: 12px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
  margin-top: 50px;
  margin-bottom: 50px;
}

.form-wrapper {
  padding: 40px 42px;
}

.title {
  font-size: 56px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 8px;
  position: relative;
}

.title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 3px;
  /* background: #00C7BE; */
  background: #0987c9;
}

.subtitle {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 32px;
}

.app-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.app-option {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-option span {
  font-weight: 500;
  color: #333;
}

.change-apps {
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 14px;
}

.change-apps:hover {
  color: #666;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input,
.form-select {
  padding: 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s;
  background: white;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #00c7be;
}

.form-input::placeholder {
  color: #999;
}

.full-width {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 16px;
}

.half-width {
  flex: 1;
}

.phone-input {
  display: flex;
  flex: 1;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.phone-input:focus-within {
  border-color: #00c7be;
}

.country-code {
  background: #f8f9fa;
  padding: 16px 12px;
  border-right: 1px solid #e1e5e9;
  color: #666;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.phone-field {
  border: none;
  flex: 1;
  padding: 16px;
}

.phone-field:focus {
  border: none;
}

.form-select {
  color: #333;
  cursor: pointer;
}

.terms-text {
  color: #666;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  margin: 8px 0;
}

.link {
  color: #00c7be;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.start-button {
  background: #0987c9;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 8px;
}

.start-button:hover {
  background: #0369a0;
}

.button-wrapper {
  width: fit-content;
  margin: 0 auto;
}

.start-button {
  width: fit-content;
}

.phone-container {
  width: 100%;
  display: flex;
  gap: 4px;
}

.phone-container select {
  width: 35%;
}

.phone-container input {
  width: 65%;
}

textarea::placeholder,
select.form-select,
select.form-input {
  color: #999 !important;
}

.col-flexer {
  /* background-color: red; */
  display: flex;
  flex-direction: column;
}

.col-flexer select,
.col-flexer input {
  /* background-color: rgb(0, 255, 76); */
  width: 100%;
}

select[id="country"] {
  /* background-color: pink; */
  /* width: 50%; */
}

.error {
  color: red;
}

@media (max-width: 750px) {
  .form-row {
    flex-direction: column;
  }

  .form-wrapper {
    padding: 20px 8px;
  }

  .phone-container {
    flex-direction: column;
    gap: 10px;
  }

  .cust-email-send-wrapper {
    width: 100%;
  }

  .cust-email-send-wrapper img {
    height: 100%;
    width: 100%;
  }
}

.modal-content{
  padding: 12px;
}
