
.find-account {
  max-width: 1100px;
  min-height: calc(100vh - 250px);
  margin: 0 auto;
  padding: 220px 0 120px;
  gap: 48px;
}

.find-account__title {
  margin-bottom: 25px;
  font-family: "Urbanist", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  line-height: 1.1;
}

.find-account__subtitle {
  margin-bottom: 50px;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #5f5f5f;
  text-align: center;
}

.find-account__panels {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2,  1fr);
  gap: 30px;
}

.find-account__panel {
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid #e6e6e6;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
}

.find-account__panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.find-account__panel-title {
  font-family: "Urbanist", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #00b6c1;
}

.find-account__panel-description {
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #6a6a6a;
}

.find-account__panel-button {
  width: 100%;
  height: 60px;
  border-radius: 12px;
  border: none;
  background-color: #5bccd3;
  color: #ffffff;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.find-account__panel-button:hover {
  background-color: #4db8bf;
}

.phone-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.phone-modal.is-open {
  display: flex;
}

.phone-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: opacity 0.2s ease;
}

.phone-modal__dialog {
  position: relative;
  width: min(560px, calc(100% - 32px));
  padding: 42px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
  text-align: left;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 90vh;
  overflow-y: auto;
}

.phone-modal__header h3 {
  margin: 0;
  font-family: "Urbanist", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #272727;
}

.phone-modal__subtitle {
  margin: 4px 0 0;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  color: #5f5f5f;
}

.phone-modal__body {
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
}

.phone-modal__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phone-modal__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.phone-modal__field label {
  font-size: 14px;
  color: #4a4a4a;
}

.phone-modal__field input {
  height: 48px;
  border-radius: 12px;
  border: 1px solid #e1e1e1;
  padding: 0 14px;
  font-size: 15px;
  font-family: "Pretendard", sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-modal__field input:focus {
  outline: none;
  border-color: #00b6c1;
  box-shadow: 0 0 0 3px rgba(0, 182, 193, 0.15);
}

.phone-modal__phone-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.phone-modal__phone-group {
  display: grid;
  grid-template-columns: 74px auto 1fr auto 1fr;
  column-gap: 8px;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

.phone-modal__phone-group select,
.phone-modal__phone-group input {
  height: 48px;
  border-radius: 12px;
  border: 1px solid #e1e1e1;
  padding: 0 8px;
  font-size: 15px;
  font-family: "Pretendard", sans-serif;
  min-width: 0;
}

.phone-modal__phone-group select:focus,
.phone-modal__phone-group input:focus {
  outline: none;
  border-color: #00b6c1;
  box-shadow: 0 0 0 3px rgba(0, 182, 193, 0.15);
}

.phone-modal__phone-group select {
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 2l6 6 6-6' stroke='%23666666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center / 12px;
  width: 74px;
}

.phone-modal__dash {
  text-align: center;
  color: #7a7a7a;
  font-weight: 600;
  user-select: none;
  width: 6px;
}

.phone-modal__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-width: 116px;
  padding: 0 14px;
  line-height: 1;
  box-sizing: border-box;
  border: none;
  border-radius: 12px;
  background: #5bccd3;
  color: #ffffff;
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.phone-modal__send:hover {
  background: #4db8bf;
}

@media (max-width: 520px) {
  .phone-modal__dialog {
    padding: 28px 22px;
  }

  .phone-modal__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .phone-modal__phone-row {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .phone-modal__phone-group {
    grid-template-columns: 90px auto 1fr auto 1fr;
    column-gap: 6px;
    row-gap: 6px;
  }

  .phone-modal__phone-group select,
  .phone-modal__phone-group input {
    height: 44px;
    font-size: 14px;
  }

  .phone-modal__send {
    width: 100%;
    min-width: 0;
    height: 42px;
    font-size: 14px;
    padding: 0 14px;
  }
}

@media (max-width: 400px) {
  .phone-modal__phone-group {
    flex-wrap: wrap;
  }

  .phone-modal__phone-group select {
    width: 100%;
  }
}

.phone-modal__help {
  margin: 0;
  font-size: 14px;
  color: #606060;
}

.phone-modal__error {
  margin: -4px 0 6px;
  font-size: 14px;
  color: #e45858;
  display: none;
}

.phone-modal__notice {
  padding: 12px 14px;
  background: #f5fcfc;
  border: 1px solid #d8f2f3;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #3f3f3f;
}

.phone-modal__notice strong {
  margin-bottom: 4px;
  color: #008d96;
  font-weight: 700;
}

.phone-modal__body ol {
  margin: 14px 0 0;
  padding-left: 20px;
  list-style-type: decimal;
  color: #5f5f5f;
}

.phone-modal__actions {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}

.phone-modal__button {
  flex: 1;
  height: 52px;
  border-radius: 14px;
  border: none;
  background-color: #00b6c1;
  color: #ffffff;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.phone-modal__button:hover {
  background-color: #0096a0;
}

.phone-modal__button--ghost {
  background: #f2f2f2;
  color: #333333;
}

.phone-modal__button--ghost:hover {
  background: #e6e6e6;
}

.phone-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #f2f2f2;
  font-size: 24px;
  color: #333333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.phone-modal__close:hover {
  background-color: #e6e6e6;
}
