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

/* ·¹ÀÌ¾Æ¿ô */
.penm-login-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-login-section { flex: 1; }

.penm-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.penm-section-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.5;
}
.penm-form-group { margin-bottom: 15px; }

.penm-form-input {
  display: block;
  width: 100%;
  border: 1px solid #cfd4e7;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
  background-clip: padding-box;
}

.penm-form-input:focus-within {
  border-color: #403F6F;
  box-shadow: 0 0 0 3px rgba(64,63,111,.08);
}

.penm-form-input input {
  display: block;
  width: 100%;
  min-height: 46px;
  padding: 14px 16px;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0;
  background: transparent;
  font-size: 0.95rem;
  color: #222;
  line-height: 1.4;
  -webkit-appearance: none;
  appearance: none;
}

/* placeholder »ö»ó */
.penm-form-input input::placeholder { color: #bbb; }

/* ºê¶ó¿ìÀú ÀÚµ¿¿Ï¼º »ö»ó ¸®¼Â */
.penm-form-input input:-webkit-autofill {
  -webkit-text-fill-color: #222;
  box-shadow: 0 0 0px 1000px #fff inset;
}

/* ·Î±×ÀÎ ¹öÆ° */
.penm-login-btn {
  width: 100%;
  padding: 15px;
  background: #333;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin: 20px 0;
  border-radius: 10px;
}
.penm-login-btn:hover { background: #222; }

/* Ã¼Å©¹Ú½º/¿É¼Ç */
.penm-checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #333;
}

/* ¸ÞÀÌÅ©¼¥ °¡»óÅÂ±×°¡ ³»º¸³»´Â ±âº» Ã¼Å©¹Ú½º¸¦ Ä¿½ºÅÍ¸¶ÀÌÁî */
.penm-checkbox-group input[type="checkbox"]{
  width: 16px;
  height: 16px;
  accent-color: #403F6F; /* ÃÖ½Å ºê¶ó¿ìÀú */
  vertical-align: middle;
}
.penm-checkbox-label { cursor: pointer; }

/* È¸¿ø°¡ÀÔ ¼½¼Ç */
.penm-join-section { flex: 1; }

.penm-join-btn {
  width: 100%;
  padding: 15px;
  background: #fff;
  color: #333;
  border: 2px solid #333;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin: 10px 0 20px 0;
  border-radius: 10px;
}
.penm-join-btn:hover { background: #333; color: #fff; }

.penm-find-section { text-align: left; }

.penm-find-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.penm-find-btn {
  width: 100%;
  padding: 12px;
  background: #fff;
  color: #666;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 8px;
}
.penm-find-btn:hover { background: #f5f5f5; }

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

/* ¹ÝÀÀÇü µðÀÚÀÎ */
@media (max-width: 768px) {
  .penm-login-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; }
}

@media (max-width: 480px) {
  .penm-main-container { padding: 20px 15px; }
  .penm-login-container { padding: 25px 15px; }
  .penm-page-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }
  .penm-section-title { font-size: 1.1rem; }
  .penm-section-desc,
  .penm-find-desc { font-size: 0.8rem; }

  .penm-form-input input {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .penm-login-btn,
  .penm-join-btn {
    padding: 12px;
    font-size: 0.9rem;
  }
}

/* BASIC css end */

