.container {
    width: 800px;
    margin: 0 auto;
    text-align: center;
}   .button {
  /* Basic button styles */
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  margin: 0 10px;
  /* Hover effect */
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #3e8e41;
}

  img {
      background-color: white;
      color: white;
      text-align: center;
     
    }

/* Form styles */
form {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

input[type="text"], input[type="password"] {
    padding: 10px;
    margin-bottom: 20px;
  
    width: 90%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

