#modal {
  height: 100vh;
  width: 100vw;

  background-color: #0e0a14ef;
  position: fixed;
  top: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 400ms;
}

#modal.hide {
  display: none;
}

#modal .content {
  width: 420px;

  color: white;
}

#modal .header {
  display: flex;
  align-items: center;
  justify-content: space-around;

  margin-bottom: 48px;
}

#modal .header h1 {
  color: white;
  font-size: 36px;
  line-height: 42px;
}

#modal form label {
  font-size: 14px;
  line-height: 16px;

  display: block;

  margin-bottom: 8px;
}

#modal form .field {
  display: flex;
}

#modal form input {
  flex: 1;

  background-color: #f0f0f5;

  border-radius: 8px 0 0 8px;
  border: 0;

  padding: 16px 24px;

  font-size: 16px;
  color: #6c6c08;
}
#modal form button {
  width: 72px;
  height: 72px;

  background-color: var(--primary-color);

  border: 0;
  border-radius: 0 8px 8px 0;

  transition: 200ms;
}

#modal form button:hover {
  background-color: #2fb86e;
}