#register {
    max-width: 800px;
    margin:auto;
    padding: 40px;
}

#register input, #register select, #register textarea {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    margin: 10px 0;
    border: 2px solid #000;
    border-radius: 5px;
    box-sizing: border-box;
    color: #000;
    font-weight: 300;
}

#register textarea {
    height: 300px;
}

#register label {
    color:#000;
    font-size: 18px;
    display: block;
    margin: 10px;
}

#register input.checkbox {
    width: auto;
    margin-right: 5px;
    margin-left:20px;
}

#register span.check-label {
    color: #000;
    font-size: 16px;
}

.address input {
    max-width: 33%;
}

#markers {
    text-align: center;
}

#markers span {
    margin: 0 10px;
    padding: 10px;
    width: 20px;
    height: 20px;
    background-color: rgba(0,0,0,0.20);
    border-radius: 50%;
    color: #FFF;
    display: inline-block;
    line-height: normal;
    transition: all 0.15s linear;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
}

#markers span.active-group {
    background-color: rgba(0,0,0,1.0);
}

#register-buttons {
    float: right;
    margin-top: 10px;
}

#register::after {
    content:' ';
    clear: both;
    display: block;
}

.register-group {
    display: none;
}

#register ::-webkit-input-placeholder { /* Edge */
    color: #000 !important;
}
  
#register :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #000 !important;
}

#register ::-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #000 !important;
}

#register :-moz-placeholder { /* Firefox 18- */
    color: #000 !important;
  }
  
#register ::-moz-placeholder { /* Firefox 18- */
    color: #000 !important;
}

#register ::placeholder {
    color: #000 !important;
}

#terms_of_use_text {
    overflow-y: scroll;
    height: 400px;
}

@media screen and (max-width:1000px){
    .address input {
        max-width: 100%;
    }
}