    main {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background-image: url("/img/Office Space/office_space (13).jpg");
      background-size: cover;
      background-repeat: no-repeat;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .login-container {
      background-color: rgba(150, 150, 150, 0.9);
      padding: 20px;
      border-radius: 5px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      max-width: 400px;
      width: 90%;
      text-align: center;
    }

    h1 {
      font-size: 24px;
      margin-bottom: 20px;
    }

        form {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    input {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      text-align: center; /* Center the input text */
    }

    #login {
      background-color: #333;
      color: white;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      border-radius: 5px;
    }

    #login:hover {
      background-color: #555;
    }
    .alert {
    padding: 10px;
    color: #c82333;
    }

    .resetpass{
      padding: 2px;
      padding-bottom: 10px;
      cursor: pointer;
      text-decoration: underline;
      background: none;
      border: 0;
    }
