ul,
* {
  margin: 0;
  padding: 0;
}
a,
a:hover {
  text-decoration: none;
}
body {
  font-size: 14px;
  background: #f4f6ff;
  font-family: "Poppins", serif;
}
header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  background: #fff;
  border-left: 5px solid #ff6600;
  z-index: 99;
}
header .logo a {
  display: block;
  color: #ff6600;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 24px;
}
.top-20 {
  margin-top: 10em;
}
.form-input {
  position: relative;
}
.form-input input,
.form-input textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  transition: 0.5s;
  font-size: 16px;
}
.form-input input:focus,
.form-input textarea:focus {
  outline: none;
  box-shadow: 0 0 0 5px #ff660042;
  border: 1px solid #ff6600;
}
.form-input label {
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 20px;
}
.form-input textarea {
  height: 300px;
  resize: none;
}
.xbtn {
  border: none;
  padding: 8px 10px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  transition: 0.5s;
}
.xbtn.xbtn-primary {
  background: #ff6600;
  color: white;
}
.xbtn.xbtn-primary:hover {
  background: #cf5300;
  box-shadow: 0 0 0 5px #ff660042;
}
.xbtn.xbtn-primary:active {
  background: #522100;
  box-shadow: 0 0 0 5px #ff66009f;
}

.bg-black {
  background: #000000;
  padding: 50px;
  border-radius: 20px;
}
form,
.tanya {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
}
ul li span {
  font-weight: 600;
  background: #ff6600;
  color: white;
  padding: 0 7px;
  border-radius: 3px;
}
ul li {
  border-bottom: 1px dashed #ddd;
  margin-bottom: 20px;
  font-size: 34px;
  margin-left: 20px;
}
@media only screen and (max-width: 768px) {
  ul li {
    border-bottom: 1px dashed #ddd;
    margin-bottom: 20px;
    font-size: 16px;
    margin-left: 20px;
  }
  header {
    width: 95%;
  }
  header .logo a {
    font-size: 18px;
  }
  .top-20 {
    margin-top: 8em;
  }
  h1 {
    font-size: 20px;
  }
  .form-input label {
    font-size: 14px;
  }
  .form-input input,
  .form-input textarea {
    padding: 10px;
    font-size: 13px;
  }
  .bg-black,
  .card-body {
    padding: 5px;
  }
}
.reminder {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0000007b;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  z-index: 999;
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.reminder-body {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  font-size: 40px;
  font-weight: 700;
}
.reminder.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.reminder-body button {
  font-size: 30px;
}
