 body {
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
  top: 70px;
            background-color: #a1ede4;
        }
        .login-container {
            width: 350px; /* Adjust the width as needed */
      padding: 20px;
      border: 1px solid #ccc;
      
      
      background-color: #fff;
        }
        h2 {
            margin-bottom: 20px;
        }
        input[type="text"], input[type="number"] {
            width: 95%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        input[type="submit"] {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 20px;
            width: 100%;
      padding: 10px;
        }
        input[type="submit"]:hover {
            background-color: blue;
                  border-radius: 20px;

        }
        .error {
            color: red;
        }
        
    .img{
       max-width:100%;
       height:100px;
    }
    .img2{
       max-width:200%;
       height:200px;
    right: 16px;
    }
    .dropbtn {
  background-color: blue;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 100%;
        border-radius: 8px;

}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: blue;
}
.btn{
    background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 20px;
            width: 100%;
      padding: 10px;
}