/* 기본 리셋 및 폰트 */
* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
  }
  
  /* 배경 그라디언트 */
  body {
    background: linear-gradient(135deg, #7d6ff0 0%, #89a6fb 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* 컨테이너 */
  .container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
  }
  
  /* 카드 스타일 */
  .reset-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 30px 20px;
    text-align: center;
  }
  
  /* 제목 */
  .reset-card h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
  }
  
  /* 입력 박스 */
  .input-box {
    margin-bottom: 15px;
  }
  .input-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
  }
  .input-box input:focus {
    outline: none;
    border-color: #7d6ff0;
  }
  
  /* 전송 버튼 */
  .action-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #c3a7fa 0%, #7d6ff0 100%);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .action-btn:hover {
    opacity: 0.9;
  }
  
  /* 도움말 링크 */
  .help-link {
    margin-top: 16px;
    font-size: 14px;
  }
  .help-link a {
    color: #7d6ff0;
    text-decoration: none;
  }
  .help-link a:hover {
    text-decoration: underline;
  }
  