.signup_box {
  width: 1000px;
  margin: auto;
  background: white;
  margin-bottom: 105px;
}
#signupform {
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}
#signupform .input_title{
  width: 100px;
}
form #signupform p {
    font-size: 13px;
}
#input_info table input:not([type=radio]){
  padding: 7px;
  font-size: 13px;
  margin : 10px;
  border: 2px solid #f4f4f4;
  background-color: #f4f4f4;
}
#input_info table textarea{
  border: 2px solid #f4f4f4;
  background-color: #f4f4f4;
  width: 550px;
  height: 200px;
}
.pagetitle {
    font-size: 50px;
    text-align: center;
    text-transform: uppercase;
    color: black;
    font-weight: bold;
}
.submit_btn {
  width: 230px;
  margin-top: 30px;
  padding: 15px 10px;
  font-size: 20px;
  color: white;
  border: 0;
  background: #19519e;
  border-radius: 5px;
  border-bottom: 3px solid #0a2142;
  border-right: 3px solid #0a2142;
}
.submit_btn:focus {
  outline: none;
}
.submit_btn:active {
  border: 0;
  background: #194986;
  border-top: 2px solid #0a2142;
  border-left: 2px solid #0a2142;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
}
.table_flex{
  display: flex;
}
#input_info table tr>td:nth-child(2){
  align-items: center;
}
div#input_info>div {
  border-top: 2px solid black;
  margin-top: 15px;
}
#input_info>div>p{
  font-size: 20px;
  position: relative;
  top: -15px;
  background: white;
  width: max-content;
  padding-right: 10px;
  margin: 0;
}
#ID_overlap_btn, .address_btn {
  background: #19519e;
  padding: 7px;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  width: 90px;
  height: 35px;
  margin: auto 10px auto auto;
  border: 0;
  border-bottom: 3px solid #0a2142;
  border-right: 3px solid #0a2142;
}
#ID_overlap_btn:focus, .address_btn:focus {
  outline: none;
}
#ID_overlap_btn:active, .address_btn:active {
  border : 0;
  background: #114082;
  border-top: 2px solid #0a2142;
  border-left: 2px solid #0a2142;
}
#from_phonecall div:nth-child(2) input{
  width: 50px;
}
#input_zip{
  display: flex;
}
#input_zip_detail>div>p:first-child{
  width: 80px;
}
#input_zip_detail .input_zip_detail{
  width: 300px;
}
@media screen and (max-width: 800px) {
  .signup_box {
    width: 100%;
  }
  td.table_flex{
    flex-direction: column;
  }
  #input_zip{
    display: block;
  }
  #input_zip_detail>div>p:first-child{
    width: 60px;
  }
  #input_zip_detail .input_zip_detail{
    width: 200px;
  }
}
