.form_shipper-register {
  padding-inline: 16px;
}
.title + p {
  margin-top: -20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  color: #6b6b6b;
  padding-inline: 16px;
  font-family: "Inter", sans-serif;
}
.personal_information > div:nth-child(n + 1) {
  margin-top: 12px;
}
.select-file {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.select-file .input_file {
  font-size: 14px;
  line-height: 22.4px;
  font-weight: 600;
  display: block;
  padding-block: 9px;
  padding-inline: 28px;
  color: #1077d0;
  cursor: pointer;
  background-color: #ebf2f8;
  border-radius: 6px;
}
.input_file .contain_image_register{
  width: 15rem;
  height: 15rem;
  border-radius: 2px;
  overflow: hidden;
}
.select-file .contain_image_register>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.select-file > span {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 22.4px;
  font-style: italic;
  color: #afafaf;
}
.register-confirm-container {
  margin-top: 85px;
  padding: 16px;
  margin-inline: -16px;
  background-color: white;
}
.btn {
  padding-block: 13px;
  display: block;
  text-align: center;
  width: 100%;
  font-size: 14px;
  line-height: 22.4px;
  outline: none;
  border-radius: 6px;
}
#register-confirm {
  font-weight: 600;
  background-color: #1077d0;
  color: white;
  border: none;
  margin-top: 10px;
}
#addr {
  position: absolute;
  width: 100%;
  max-height: 220px;
  overflow-y: scroll;
}
#addr:has(> div) {
  border: 1.5px solid #979797;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
#addr tr:hover {
  background-color: rgb(185, 185, 185);
}
#addr table {
  width: 100%;
}
/* Điều khoản sử dụng */
.terms_accept{
  display: flex;
  align-items: center;
  margin-block: 15px;
  gap: 8px;
}
.terms_accept input[id="terms_accept"]{
  scale: 1.2;
  accent-color: #1077d0;
}
.terms_accept .terms{
  color: #1077d0;
  text-decoration: none;
}
.terms_accept .terms:hover{
  text-decoration: underline;
}
#terms_modal{
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.225);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in;
}

#terms_modal .terms_modal_wrapper{
  margin-inline: 1.2rem;
  background-color: white;
  width: 100%;
  max-width: 900px;
  padding: 2rem;
  height: 100%;
  max-height: 80vh;
  border-radius: 10px;
  position: relative;
}
#terms_modal .terms_modal_wrapper .terms_modal_close{
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 2rem;
  cursor: pointer;
}
#terms_modal .terms_modal_content{
  height: 100%;
  width: 100%;
  overflow-y: scroll;
}
#terms_modal .terms_modal_content a{
  color: #1077d0;
}
#terms_modal .terms_modal_content::-webkit-scrollbar {
  width: 0;
}
#terms_modal .terms_modal_content .terms_header{
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}

#terms_modal .terms_modal_content .terms_title{
  font-weight: bold;
  font-size: 1rem;
  margin-top: 10px;
}
#terms_modal .terms_modal_content .terms_des{
  line-height: 1.5;
}
@media only screen and (max-width: 600px) {
  #terms_modal .terms_modal_wrapper{
    padding: 1rem;
  }
  #terms_modal .terms_modal_content .terms_header{
    margin-top: 1rem;
    font-size: 1.1rem;
  }
  #terms_modal .terms_modal_content .terms_title{
    font-size: 0.9rem;
  }
  #terms_modal .terms_modal_content .terms_des{
    font-size: 0.9rem;
  }
}