body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: linear-gradient(
    to bottom,
    #201f1f 5%,
    #f5d415 30%,
    #8f7c0c 95%
  );
}
.container {
  background-color: rgb(0, 0, 0, 0);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  width: 400px;
}
h2 {
  text-align: center;
  margin-bottom: 20px;
}
label {
  display: block;
  margin-top: 15px;
}
input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button {
  width: 100%;
  margin-top: 20px;
  padding: 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}
button:hover {
  background-color: #45a049;
}
.login-link {
  text-align: center;
  margin-top: 15px;
}
a {
  color: white;
}
a:hover {
  color: black;
}
.img {
  height: 100px;
  width: 100px;
  margin-left: 40%;
  margin-top: px;
}
h2 {
  text-align: center;
  margin-bottom: 25px;
  color: white;
}
@media screen and (max-width: 768px) {
  .form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .form-container form {
    width: 90%;
  }

  .form-logo {
    margin-top: 20px;
    width: 150px;
    height: auto;
  }
  .form-container img {
    margin: 10px 10px;
  }
}
