body {
  background: rgb(20 23 24) fixed center / cover;
  text-align: center;
  margin-top: 100px;
}

* {
  margin: 0;
  padding: 0;
}

.registration.form {
  padding: 30px;
  top: 40px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  width: 80%;
  max-width: 400px;
  margin: 40px auto;
}

.registration input[type="text"],
.registration input[type="number"],
.registration input[type="password"],
.registration select {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  padding: 0 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

.registration select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: right 10px top 50%;
  background-repeat: no-repeat;
  padding-right: 30px;
}

.member-button {
  background: #2f5be7;
  box-shadow: 0 2px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
  color: #ffffff;
  padding: 12px 18px;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
}

.member-button:hover {
  background-color: #2f5ae771
}

h1 {
  font-size: 40px;
  font-family: 'Inter', sans-serif;
  text-align: center;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .landing-right {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
    .landing-right {
      width: 100% !important;
    }
}


