.reg-form {
  display: grid;
  grid-auto-flow: row;
  justify-items: center;
  background: white;
  border-radius: 20px;
  color: #151331;
  padding: 40px 0px;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  width: 60%;
  justify-self: center;
  scroll-margin-top: 128px;
}

form {
  display: grid;
  grid-auto-flow: row;
  justify-items: center;
  border-radius: 20px;
  color: #151331;
  gap: 20px;
  margin-bottom: 20px;
  width: 100%;
}

form input, form select {
  height: 50px;
  padding: 0 10px;
  box-sizing: border-box;
}

form textarea {
  padding: 10px 10px;
  resize: vertical;
  box-sizing: border-box;
}

form input, form select, form textarea {
  width: 100%;
  border: 1px solid black;
  font-size: 15pt;
}

.form-link {
  color: black;
}

.page-desc a {
    padding: 20px;
    color: white;
    text-decoration: none;
    background: #ff7e0a;
    font-size: 28px;
    border-radius: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.send-btn {
  padding: 0px 55px;
  font-size: 13pt;
  border-radius: 5px;
  cursor: pointer;
  background-color: #ff7e0a;
  color: #fff;
  font-weight: 600;
  outline: none;
  width: min-content;
  box-sizing: content-box;
  border: 0;
  height: 65px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.send-btn.add-leader {
  background-color: #284823;
  font-size: 15px;
  width: max-content;
  padding: 0px 30px;
  height: 35px;
}

.input-container {
  display: grid;
  gap: 10px;
  width: 80%;
  justify-items: center;
}

.input-container label {
    justify-self: start;
}

.required {
    color: red;
}

.warning {
    color: red;
    justify-self: start;
    font-size: 9pt;
    display: none;
}

.warning.show {
    display: grid;
}

.plug {
  display: grid;
  background: white;
  padding: 40px;
  justify-content: center;
  margin: 40px;
  gap: 5px;
  justify-self: center;
  text-align: center;
}

.politics {
  text-align: center;
}

.form-title {
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); 
  font-size: 48px; 
}

.additional-container {
  display: grid;
  width: 80%;
  justify-items: center;
  gap: 20px;
  padding: 10px 0;
  border: 1px dashed #151331;
  position: relative;
}

.additional-container .input-container {
  width: 95%;
}

.del-btn {
  position: absolute;
  right: 0;
  cursor: pointer;
}

@media screen and (max-width: 1395px) {
    .reg-form {
      width: 80%;
    }
}

@media screen and (max-width: 862px) {
    form input, form select, form textarea, .ts-wrapper {
        width: 100%;
        border: 1px solid black;
        font-size: 10pt;
    }

    form input, form select {
        height: 40px;
    }

    .input-container label {
        font-size: 10pt;
    }

    .form-title {
        font-size: 32px; 
      }
}

@media screen and (max-width: 629px) {
    .page-desc a {
        font-size: 20px;
    }

    .reg-form {
      width: 95%;
    }
}

@media screen and (max-width: 469px) {
    .page-desc a {
        font-size: 11pt;
    }
}