/* 로그인 인증 관련 페이지 스타일 */


#reset-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  #reset-layer {
    position: absolute;
    top: 50%; left: 50%;
    width: 320px;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 20px 20px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -50%);
    z-index: 1000;
  }

  /* 상단 엑스 버튼 */
  .close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
  }

  #reset-layer h3 {
    margin: 0;
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }

  #reset-layer input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }

  #reset-layer button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
  }

  @media (max-width: 360px) {
    #reset-layer {
      width: 90%;
    }
  }