.banner img {
  display: block;
}

.container {
  width: 85%;
  padding: 5rem 0;
  margin: 0 auto;
}

.request-section {
  margin: 2rem 0;
}

.request-section .title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.request-section .request-table {
  width: 100%;
}

.request-section .request-table .tr {
  border-radius: 0.5rem;
}

.request-section .request-table .tr-head {
  padding: 2rem;
  width: calc(100% - 4rem);
  font-weight: 800;
  background-color: #d0d6db;
  display: flex;
  gap: 2%;
}

.request-section .request-table .tr > div {
  text-align: center;
}

.request-section .request-table .tr > div:nth-child(1) {
  width: 15%;
}

.request-section .request-table .tr > div:nth-child(2) {
  width: 15%;
}

.request-section .request-table .tr > div:nth-child(3) {
  width: 15%;
}

.request-section .request-table .tr > div:nth-child(4) {
  width: 51%;
}

/* --------------------------------------------- */
.user-guide-container {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #808080;
}

.user-guide-container p {
  margin-bottom: 0.5rem;
  text-align: justify;
}

.user-guide-container li {
  list-style-type: disc;
  list-style-position: inside;
  text-align: justify;
}
/* --------------------------------------------- */
.not-found {
  padding: 2rem 0;
  color: #1d1d1d;
  text-align: center;
  background-color: #eff2f5;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.form-container {
  width: 50%;
  margin: 0 auto;
  border-radius: 0.7rem;
  overflow: hidden;
  border: 1px solid #92a2af;
}

.form-title {
  width: 100%;
  padding: 1.5rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #d0d6db;
  text-align: center;
  border-bottom: 1px solid #92a2af;
}

.form-body {
  background-color: #fafafa;
  width: calc(100% - 2rem);
  padding: 1rem;
}

.form-body-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form-body-content input:nth-child(1),
.form-body-content input:nth-child(2),
.form-body-content input:nth-child(3),
.form-body-content input:nth-child(4) {
  margin-bottom: 1rem;
}

.form-body-content input {
  width: calc(48% - 1rem);
  padding: 0.5rem;
  background-color: #d0d6db;
  border: 0;
  color: var(--black);
  border-radius: 0.3rem;
}

.form-body-content input::placeholder {
  color: #1d1d1d;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}
/* ========================= */
.file-wrapper {
  width: calc(100% - 1rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background-color: #d0d6db;
  border-radius: 0.3rem;
  margin-bottom: 1rem;
}

.file-wrapper > span {
  color: #1d1d1d;
  font-weight: 100;
  font-size: 0.9rem;
}

.file-wrapper > div > span {
  color: rgb(78, 78, 78);
  font-weight: 700;
}

.file-wrapper > div > label {
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: center;
  border: 2px dashed #808080;
  padding: 0.3rem 1rem;
}

.file-wrapper > div > label > span:nth-child(1) {
  color: #1d1d1d;
}

.file-wrapper > div > label > span:nth-child(2) {
  color: #1d1d1d;
}
/* ======================== */
.form-body-content textarea {
  resize: none;
  width: calc(100% - 1rem);
  padding: 0.5rem;
  height: 200px;
  background-color: #d0d6db;
  border: 0;
  border-radius: 0.3rem;
  margin-bottom: 1rem;
}

.form-body-content textarea::placeholder {
  color: #1d1d1d;
}

.sendBtnConatiner {
  width: 100%;
  text-align: center;
}

.sendBtnConatiner button {
  padding: 0.5rem 2rem;
  background-color: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 5rem;
}
/* ------------------------------------------------------------------ */
#popupContainer {
  width: 100%;
  position: fixed;
  top: -100%;
  right: 0;
  padding-top: 1rem;
}

#popupContainer > div {
  width: 30%;
  margin: 0 auto;
  padding: 1rem 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.bg-success {
  background-color: rgb(238, 255, 249);
  border: 1px solid green;
  color: green;
  border-radius: 0.5rem;
  text-align: center;
}

.bg-failed {
  background-color: rgb(255, 238, 238);
  border: 1px solid rgb(218, 0, 0);
  color: rgb(218, 0, 0);
  border-radius: 0.5rem;
  text-align: center;
}

@keyframes showPopup {
  0% {
    top: -100%;
  }

  100% {
    top: 0;
  }
}

@keyframes hidePopup {
  0% {
    top: 0;
  }

  100% {
    top: -100%;
  }
}
/* ------------------------------------------------------------------ */
@media screen and (min-width: 1800px) {
  .container {
    width: 1550px;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    width: 95%;
  }
}

@media screen and (max-width: 998px) {
  .form-container {
    width: 80%;
  }

  .user-guide-container {
    width: 80%;
  }
}

@media screen and (max-width: 576px) {
  .form-container {
    width: 100%;
  }
  .user-guide-container {
    width: 100%;
  }
}
