/* BASIC css start */
/* ¸ÞÀÎ ÄÁÅ×ÀÌ³Ê */
.penm-main-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.penm-find-container {
  display: flex;
  gap: 60px;
  background: #fff;
  padding: 50px;
  border: 1px solid #e4eaff;
}

.penm-page-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #403F6F;
  margin-bottom: 40px;
  border-bottom: 2px solid #403F6F;
  padding-bottom: 10px;
}

/* °øÅë ¼½¼Ç */
.penm-find-section { flex: 1; }

.penm-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.penm-section-desc {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* ¶óµð¿À */
.penm-radio-group {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}
.penm-radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.penm-radio-label {
  font-size: 0.8rem;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
}
/* ¸ÞÀÌÅ©¼¥ ¶óµð¿À¿¡µµ Àû¿ëµÇµµ·Ï ¹ü¿ë ¼±ÅÃÀÚ »ç¿ë */
.penm-radio-group input[type="radio"] {
  width: 16px; height: 16px;
  accent-color: #403F6F;
}

/* Æû ±×·ì */
.penm-form-group { margin-bottom: 15px; }

/* ·¡ÆÛ + ³»ºÎ input ½ºÅ¸ÀÏ (¸ÞÀÌÅ©¼¥ inputÀ» °¨½Î´Â ±¸Á¶) */
.penm-form-input { display: block; }
.penm-form-input input,
.penm-form-input select,
.penm-form-input textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  background: #fff;
  box-sizing: border-box;
}
.penm-form-input input:focus,
.penm-form-input select:focus,
.penm-form-input textarea:focus {
  outline: none;
  border-color: #403F6F;
}
.penm-form-input input::placeholder { color: #ccc; }

/* º»ÀÎÀÎÁõ ¾È³»/¹öÆ° */
.penm-auth-screen {
  display: none;             /* block_find_pw_auth ±¸°£¿¡¼­¸¸ ³ëÃâ */
  text-align: center;
  padding: 30px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  margin: 20px 0;
}
.penm-auth-title {
  font-size: 0.8rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}
.penm-auth-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 20px 0;
}
.penm-auth-link {
  color: #e74c3c;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.penm-auth-link:hover { text-decoration: underline; }

.penm-auth-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.penm-auth-btn {
  flex: 1;
  padding: 12px;
  background: #fff;
  color: #333;
  border: 2px solid #333;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.penm-auth-btn img { height: 18px; }
.penm-auth-btn:hover { background: #333; color: #fff; }

/* ¹öÆ° */
.penm-find-btn {
  width: 100%;
  padding: 12px;
  background: #fff;
  color: #333;
  border: 2px solid #333;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
  display: block;
  text-align: center;
  text-decoration: none;
}
.penm-find-btn:hover { background: #333; color: #fff; }

.penm-login-btn {
  width: 100%;
  padding: 15px;
  background: #333;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: block;
  text-align: center;
  text-decoration: none;
}
.penm-login-btn:hover { background: #222; }

/* ±¸ºÐ¼± */
.penm-divider { width: 1px; background: #e0e0e0; margin: 0 30px; }

/* ¹ÝÀÀÇü */
@media (max-width: 768px) {
  .penm-find-container { flex-direction: column; gap: 40px; padding: 30px 20px; }
  .penm-divider { width: 100%; height: 1px; margin: 20px 0; }
  .penm-page-title { font-size: 1.5rem; margin-bottom: 30px; }
  .penm-section-title { font-size: 1.2rem; }
  .penm-radio-group { flex-direction: column; gap: 15px; }
  .penm-auth-links { gap: 20px; }
  .penm-auth-buttons { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) {
  .penm-main-container { padding: 20px 15px; }
  .penm-find-container { padding: 25px 15px; }
  .penm-page-title { font-size: 1.3rem; margin-bottom: 25px; }
  .penm-section-title { font-size: 1.1rem; }
  .penm-section-desc { font-size: 0.75rem; }
  .penm-form-input input { padding: 10px 12px; font-size: 0.9rem; }
  .penm-find-btn, .penm-login-btn { padding: 12px; font-size: 0.9rem; }
}

/* BASIC css end */

