body {
  background-color: #f4f4f4;
}

/* ===== [ 레이아웃 ] ===== */
.container {
  max-width: 600px;
  margin: 60px auto;
  background: #fff;
  padding: 40px;
}

.logo-area {
  text-align: center;
  margin-bottom: 40px;
}

.logo svg {
  height: 50px;
  color: #006f7c;
}

.page-title {
  text-align: center;
  font-size: 24px;
  color: #006f7c;
}

/* ===== [ 탭 메뉴 ] ===== */
.tab-menu {
  display: flex;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  background: #fff;
  border: 1px solid transparent;
  border-bottom: none;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  border-bottom: 1px solid #006f7c;
  margin-top: 40px;
}

.tab.active {
  border: 1px solid #006f7c;
  border-bottom: 1px solid #fff;
  color: #006f7c;
  font-weight: bold;
}

.tab-content {
  margin-top: 20px;
}


.tab-panel {
  margin-top: 20px;
  display: none;
}

.tab-panel.active {
  display: block;
}
.find-table {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}

/* ===== [ 입력 필드 ] ===== */
.input-group {
  display: flex;
  gap: 5px;
  width: 100%;
  align-items: center;
}
.auth-box {
  display: flex;
  gap: 10px;
  align-items: center;
}
input[type="password"],
input[type="email"],
input[type="text"] {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
  background-color: white;
}
input[type="email"]{
  flex: 1;
}

input:focus {
  border-color: #006f7c;
  outline: none;
}

/* ===== [ 인증 타이머 및 메시지 ] ===== */
#timer {
  display: block;
  font-size: 13px;
  color: red;
  margin-bottom: 6px;
  text-align: right;
}

#emailError {
  color: #d32f2f;
  font-size: 13px;
  margin-top: 4px;
}

#verifyResult {
  margin-top: 12px;
  font-size: 14px;
  color: #d32f2f;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== [ 버튼 ] ===== */
.btn-find,
.auth-btn,
.btn-confirm {
  width: 100%;
  max-width: 200px;
  padding: 10px 20px;
  background-color: #006f7c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}

.auth-btn {
  width: auto;
}

.btn-find:disabled {
  background: #ccc;
  cursor: not-allowed;
}
/* ===== [ 모달창 스타일 ] ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-overlay.hidden {
  display: none;
}

.modal {
  background: white;
  border-radius: 6px;
  width: 300px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.modal-header {
  background-color: #004f59;
  color: white;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-body {
  padding: 20px;
}
.modal-body p, .modal-body span{
  font-size: 14px;
  line-height: 20px;
}

.modal-footer {
  padding-bottom: 20px;
  text-align: center;
}

/* .btn-confirm {
  padding: 8px 20px;
  background-color: #004f59;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
} */

.modal-close {
  background: none;
  border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
}
.input-group.hidden{
    display: none;
}
button:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.inline-timer {
  display: block;
  font-size: 13px;
  color: red;
  margin-bottom: 6px;
  text-align: right;
  position: static;
  transform: none;
}
