    body {
      background: #111; 
      color: white;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Arial', sans-serif;
    }

    .login-container {
      background: #222;
      padding: 30px;
      border-radius: 10px;
 
      width: 100%;
      max-width: 400px;
      text-align: center;
    }

    .login-container h2 {
      margin-bottom: 20px;
      font-weight: bold;
      color: #ffc107;
    }

    .input-group-text {
      background: #ffc107;
      color: black;
      border: none;
    }

    .form-control {
      border-left: none;
      background: #333;
      color: white;
    }

    .form-control::placeholder {
      color: #bbb;
    }

    .btn-login {
      background: #ffc107;
      color: black;
      font-weight: bold;
      border: none;
      padding: 10px;
      width: 100%;
      border-radius: 5px;
      transition: 0.3s;
    }

    .btn-login:hover {
      background: #e0a800;
    }

    .forgot-password {
      display: block;
      margin-top: 10px;
      color: #ffc107;
      text-decoration: none;
    }

    .forgot-password:hover {
      text-decoration: underline;
    }
