body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  background-color: #fafafb;
}

.registration-container {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 350px;
}
.registration-form {
  padding: 10px;
}

.registration-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}
.registration-form input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.registration-form button {
  width: 100%;
  padding: 10px;
  background-color: rgb(82, 188, 82);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.registration-form button:hover {
  background-color: rgb(72, 168, 72);
}

img {
  width: 100px;
  display: block;
  margin: 0 auto;
}

p {
  text-align: center;
}

.login {
  color: rgb(72, 168, 72);
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .registration-container {
    width: 90%;
    padding: 10px;
  }

  .registration-form input {
    width: 100%;
  }
}
