body {
  background-color: #f8f9fa;
}

.login-form {
  margin-top: 60px;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  text-align: center;
}

.top-heading{
    font-size: 50px;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 0px;
 
}

.top-heading a{
  text-decoration: none;
  color: inherit;
}

h1 {
  margin-bottom: 30px;
}

input[type="text"],
input[type="password"],input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

button {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: #007bff;
  color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

button:hover {
  background-color: #0062cc;
}

p {
  margin-top: 20px;
}

a {
  color: #007bff;
}
