
.regmodal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgba(0, 0, 0, .7);
  display: none;
  justify-content: center;
  align-items: center;
}

.regmodal--active {
  display: flex;
}

.regmodal__inner {
  font-family: 'Gravity', sans-serif;
  padding: 20px;
  border-radius: 16px;
  background-color: rgba(26, 30, 26, 1);
  position: relative;
  max-width: 320px;
  width: 100%;
  color: #fff;
}

.regmodal__inner h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.regmodal__inner p {
  text-align: center;
  margin-top: 20px;
  color: blue;
  cursor: pointer;
}

.regmodal__close {
  font-family: 'OpenSauceOne', sans-serif;
  position: absolute;
  right: 20px;
  top: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
}

.regmodal__inner form {
  display: flex;
  flex-direction: column;
  max-width: 300px;
}

.regmodal__inner form label {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

.regmodal__inner form input {
  font-family: 'OpenSauceOne', sans-serif;
  width: 100%;
  border: 1px solid lightgrey;
  border-radius: 16px;
  padding: 10px;
  margin-top: 5px;
  outline: none;
  color: #fff;
}

.regmodal__inner form button {
  font-family: 'OpenSauceOne', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 16px;
  font-weight: 700;
}
