@charset "utf-8";

/* Partner Form Styles */
.franchise-request-form-wrap {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  font-family: "Pretendard", sans-serif;
  background-color: #f8f8f8;
  padding: 20px 0;
}
.winc-card {
  background-color: #f8f8f8;
  padding: 20px 0;
}
.winc-card-title {
  font-size: 32px;
  text-align: center;
  display: block;
  padding-top: 20px;
  padding-bottom: 0px;
  font-weight: bold;
}
.winc-card-subtitle {
  font-size: 14px;
  color: #5b7bf3;
  text-align: center;
  padding: 4px 0 40px;
  display: block;
}
.winc-form-label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-top: 28px;
  margin-bottom: 4px;
  text-align: left;
}
.winc-form-label:first-of-type {
  margin-top: 0;
}
.winc-form-label::after {
  content: "";
  background-color: #5b7bf3;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: -10px;
  left: 3px;
}
.winc-form-label.optional::after {
  content: none;
}
.winc-input {
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  color: #000;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
}
.winc-input::placeholder {
  color: #bebebe;
}
.winc-input:focus {
  border-bottom: 2px solid #5b7bf3;
}
.winc-textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  color: #000;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: transparent;
  outline: none;
  resize: none;
  margin-top: 12px;
}
.winc-textarea:focus {
  border: 2px solid #5b7bf3;
}
.phone-input-group {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.btn-send-code {
  width: 32%;
  min-width: 105px;
  height: 40px;
  font-size: 13px;
  background: #dedede;
  color: #ababab;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}
.btn-send-code.active {
  background-color: #000;
  color: #fff;
}
#validation-area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  width: 100%;
}
.validation-code-wrap {
  position: relative;
  width: 100%; /* Behave like winc-input */
  min-width: 0;
  font-size: 14px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}
.timer-text {
  position: absolute;
  bottom: 12px;
  right: 5px;
  color: #d32f2f;
  font-weight: 500;
}
.validation-info {
  font-size: 13px;
  color: #000;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  width: 32%; /* Matches .btn-send-code width */
  min-width: 105px; /* Matches .btn-send-code min-width */
  text-align: left;
  flex: none;
}
.validation-info.failed {
  color: #d32f2f;
}
/* Using class for icons for simplicity if icons are not available via CSS content */
.icon-check::before {
  content: "✓";
  margin-right: 4px;
}
.icon-alert::before {
  content: "!";
  margin-right: 4px;
  border: 1px solid;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: inline-block;
  text-align: center;
  line-height: 14px;
}

.btn-submit {
  margin-top: 40px;
  width: 100%;
  height: 55px;
  background-color: #000;
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
}
.btn-submit:disabled {
  background-color: #dedede;
  cursor: not-allowed;
}
.submitted-info {
  text-align: center;
  margin-top: 48px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.submitted-title {
  font-size: 26px;
  color: #5b7bf3;
  margin-bottom: 20px;
  /* Use simple text alignment or flex centering without forcing width */
  display: flex;
  align-items: center;
  justify-content: center;
}
.submitted-desc {
  font-size: 16px;
  line-height: 1.5;
  word-break: keep-all;
  text-align: center;
}
.mt-7 {
  margin-top: 28px;
}

@media screen and (max-width: 780px) {
  .franchise-request-form-wrap {
    max-width: 90%;
  }
  .winc-card-title {
    font-size: 28px;
  }
  .winc-card-subtitle {
    font-size: 12px;
  }
  .winc-form-label {
    font-size: 16px;
  }
  .winc-input {
    font-size: 15px;
  }
  .submitted-title {
    font-size: 23px;
  }
  .submitted-desc {
    font-size: 15px;
  }
}
.hidden {
  display: none !important;
}
