body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .login-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .login-container {
      background-color: #f4f4f4;
      padding: 60px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      width: 90%;
      max-width: 400px;
      position: relative;
    }

    .login-container img {
      display: block;
      margin: auto;
      margin-bottom: 10px;
      border-radius: 8px;
      box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.75);
    }

    .login-container h2 {
      margin-bottom: 10px;
      text-align: center;
      color: #333;
    }

    .form-group {
      margin-bottom: 20px;
      position: relative;
    }

    .form-group label {
      position: relative;
      font-weight: bold; 
    }

    .form-group input[type="text"],
    .form-group input[type="password"] {
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 5px;
      box-sizing: border-box;
      background-color: #f4f4f4;
      border-bottom: 2px solid black; 
    }

    .form-group input[type="submit"] {
      padding: 12px 0;
      border: none;
      border-radius: 5px;
      background-color: #000;
      color: #fff;
      cursor: pointer;
      transition: background-color 0.3s ease;
      width: 100%; 
    }

    .form-group input[type="submit"]:hover {
      background-color: #353535;
    }


    @media (max-width: 600px) {
      .login-container {
        padding: 30px;
      }
      .form-group input[type="text"],
      .form-group input[type="password"] {
        padding: 10px;
      }
      .form-group input[type="submit"] {
        padding: 10px 20px;
        bottom: 10px;
        right: 10px;
        background-color: #000;
        color: #fff;
      }
    }