/* 로그인 박스의 스타일 정의 */
.login-form {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    margin: auto;
    background-color: #fff; /* Set the background color to white */
  }
  
  .login-form h2 {
    margin-top: 0;
    text-align: center;
  }
  
  .login-form label {
    display: inline-block;
    width: 130px;
    text-align: right;
    margin-right: 10px;
  }
  
  .login-form input[type="text"],
  .login-form input[type="password"],
  .login-form input[type="submit"] {
    display: block;
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 3px;
    border: 1px solid #ccc;
    font-size: 16px;
  }
  
  .login-form input[type="submit"] {
    background-color: #4CAF50;
    color: #fff;
    cursor: pointer;
  }

  