    body {
      margin: 0;
      padding: 0;
      background: #f5f7fa;
      font-family: 'Noto Sans KR', sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
    #wrap {
      background: #fff;
      padding: 60px 40px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      width: 400px;
    }
    #loginbox {
      text-align: center;
    }
    .login {
      font-size: 32px;
      color: #333;
    }
    .box {
      margin: 15px 0;
      position: relative;
    }
    input.box {
      width: 100%;
      padding: 14px 16px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-sizing: border-box;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    input.box:focus {
      border-color: #4a90e2;
      box-shadow: 0 0 6px rgba(74, 144, 226, 0.3);
      outline: none;
    }
    .loginBtn {
      background: linear-gradient(135deg, #4a90e2, #357ABD);
      color: #fff;
      border: none;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s;
    }
    .loginBtn:hover {
      background: linear-gradient(135deg, #357ABD, #2a65a0);
    }
    .prevPage {
      margin-top: 10px;
    }
    
    #message {
      color: red;
      font-size: 14px;
      margin-top: 10px;
    }
    .saveId {
      text-align: left;
      margin-top: -10px;
      cursor: pointer; /* 박스 전체에 포인터 적용 */
    }

    .saveId input {
      cursor: pointer;
    }

    .saveId label {
      cursor: pointer;
    }
    #togglePassword {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      font-size: 18px;
      color: #999;
    }