<style>
    body {
	  background-image: url("images/logo.png");
	  background-repeat: no-repeat;
	  background-attachment: fixed;
	  background-size: cover;
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 20px;
    }

    .form-container {
      opacity:.8;
      display: grid;
      grid-template-columns: 150px 200px 20px 115px ;
      gap: 15px 10px;
      max-width: 600px;
      margin: 100px auto;
      background-color: #f2f2f2;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    label {
      text-align: right;
      padding-right: 10px;
      font-size: 14px;
      color: #333;
    }

    input[type="text"], input[type="password"] {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 16px;
    }

    input[type="submit"],  input[type="button"]  {
      grid-column: 1 / span 2 ;
      padding: 10px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    input[type="submit"]:hover {
      background-color: #0056b3;
    }

    input[type="submit"]:active {
      background-color: #004494;
    }
    input[type="button"]:hover {
      background-color: #0056b3;
    }
    input[type="button"]:active {
      background-color: #004494;
    }
  </style>