
/* Popup */

.popup{
    background: linear-gradient(130deg, #8BC6EC 0%, #9599E2 100%);
    font-size: 24px;
    font-weight: 400;
    line-height: 2rem;
    margin: 100px auto;
    max-width: 100%;
    padding: 20px;
    width: 500px;
    text-align: center;
    z-index: 1000000;
}

.popup__title {
  font-size: 26px;
  margin-bottom: 15px;
}

.popup input, .popup textarea {
  margin-top: 1rem;
  width: 90%;
  padding: 0.5rem;
}

.popup button {
  background-color: #222222;
  color: whitesmoke;
  border: none;
  padding: 0.5rem;
  width: 90%;
  margin: 0.5rem auto;
  text-align: center;
  display: block;
}#popup {
    display: none;
}

.popup__wrapper {
    background: rgba(0, 0, 0, .75);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
}
