body {
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
  }

  #logo{
    width: 470px;
    margin-bottom: 30px;
  }
  .login-box {
    background: #ffffff;
    border: 2px solid #02006d;

    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    text-align: center;
    width: 470px;
  }
  .login-box h2 {
    margin-bottom: 20px;
    color: #333;
  }
  .login-box input[type="password"] {
    width: 400px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }
  .login-box button {
    width: 426px;
    padding: 12px;
    background: #1fd627;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
  }
  .login-box button:hover {
    background: #45a049;
  }