
body{
    background-color: #000;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #0071ae;
}

.topbox {
    width: 700px;
    padding: 0;
    margin: 0 auto;
    background-color: white;
}
.hh{
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}

.reg_box{
    width: 350px;
    margin: 0 auto;
}

.reg_box input[type=text]{
    width: 100%;
    height: 40px;
    margin: 10px auto;
    padding: 0 5px;
    border: 2px solid lightgray;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 550;
    color: #0071ae;
}
.reg_box select{
    width: 100%;
    height: 40px;
    margin: 10px auto;
    padding: 0 5px;
    border: 2px solid lightgray;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 550;
    color: #0071ae;
}
.reg_box button{
    width: 100%;
    height: 40px;
    margin: 20px auto;
    text-align: center;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 550;
    color: white;
    background-image: linear-gradient(to bottom right, #54a9df, #326c99);
}
.reg_box button:hover{
    cursor: pointer;
    background: none;
    color: #0071ae;
    border: 1px solid #0071ae;
}

::placeholder{
    color: lightgray;
}

.log_box{
    text-align: center;
    width: 310px;
    margin: 0;
    position: absolute;
    top: 300px;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.log_box h2{
    font-size: 25px;
    font-weight: 550;
    text-align: center;
    color: white;
}
.log_box input{
    width: 310px;
    height: 40px;
    margin: 10px auto;
    padding: 0 5px;
    border: 2px solid lightgray;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 550;
    color: #0071ae;
}
.log_box button{
    width: 300px;
    height: 40px;
    border-radius: 20px;
    border: none;
    font-size: 20px;
    color: white;
    background-color: #54a9df;
}
.log_box button:hover{
    color: #005380;
    background: none;
    background-color: white;
    border: 2px solid #005380;
    font-weight: 600;
}


.ppterms{
    font-size: 11px;
    line-height: 1.2;
    padding: 0 40px;
    margin: 20px auto;
}

.imgauto{
    width: 100%;
}

@media (max-width: 420px) {
    .topbox {
        width: 100%;
    }
    .reg_box{
        width: 90%;
    }
    .log_box{
        -ms-transform: translate(-50%, -160px);
        transform: translate(-50%, -160px);
    }
}
.lb{
    margin: 3px;
    line-height: 2;
}
.surveyoption input[type=radio]:after {
    width: 12px;
    height: 12px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: white;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid #0071ae;
}
.surveyoption input[type="radio"]:checked:after {
    width: 12px;
    height: 12px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #0071ae;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid #0071ae;
}



.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 15px;
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control__indicator {
  position: absolute;
  top: 1px;
  left: 5px;
  height: 17px;
  width: 17px;
  background: #e6e6e6;
}
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc;
}
.control input:checked ~ .control__indicator {
  background: #2aa1c0;
}
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #0e647d;
}
.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}
.control input:checked ~ .control__indicator:after {
  display: block;
}
.control--checkbox .control__indicator:after {
  left: 6px;
  top: 3px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
.control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}


