
body {
    user-select: none;
}

.registerRoot {
    width: 100%;
    height: 100%;
    background-image: url("/static/images/loginBack.png");
    background-size: 100% 100%;
}

.registerLogo {
    width: 400px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 50px;
}

.registerForm {
    width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}
.registerForm > .registerFormRow {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
}
.registerForm > .registerFormRow > label:first-child {
    width: 100px;
    text-align: center;
    margin-right: 5px;
}
.registerForm > .registerFormRow > label:not(:first-child) {
    text-align: center;
    flex: 1;
}
.registerForm > .registerFormRow > input:not([type="checkbox"]) {
    height: 30px;
    border: 1px solid black;
    border-radius: 5px;
    flex: 1;
}
.registerForm > .registerFormRow > input[type="checkbox"], .registerForm > .registerFormRow > input[type="radio"] {
    height: 15px;
}
.registerForm > .registerFormRow:not(:last-child), .registerForm > hr:not(:last-child) {
    margin-bottom: 10px;
}
.registerForm .registerInterestRow {
    display: flex;
    flex-flow: row;
}
.registerForm .registerInterestRow:not(:last-child) {
    margin-bottom: 10px;
}
.registerForm .registerInterestRow > input[type="checkbox"] {
    margin-right: 5px;
}
.registerForm .registerInterestRow > input[type="checkbox"]:not(:first-child) {
    margin-left: 10px;
}
#chkApproval, #chkDataApproval {
    margin-right: 10px;
}
#inpPsswd[data-valid="false"], #inpPsswdAgain[data-valid="false"] {
    outline: 1px solid red;
}
#btnRegister {
    color: white;
    background-color: #036382;
    border: none;
    border-radius: 5px;
    margin: 10px 0px;
    margin-right: 5px;
    margin-bottom: 0px;
    padding: 10px 5px 10px 5px;
    cursor: pointer;
    flex: 1;
}
#btnRegister:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
#btnBack {
    width: 70px;
    text-align: center;
    color: black;
    background-color: lightgray;
    border: none;
    border-radius: 5px;
    margin: 10px 0px;
    margin-bottom: 0px;
    padding: 10px 5px 10px 5px;
    cursor: pointer;
}

.validTooltip {
    display: none;
    position: absolute;
    font-size: 15px;
    border: 2px solid red;
    border-radius: 5px;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.3);
}

.modalContent {
    height: 100%;
    display: flex;
    flex-flow: column;
}
.termsArea {
    flex: 1;
}
button.termsAgree {
    color: white;
    background-color: #036382;
    border: none;
    border-radius: 5px;
    margin-right: 5px;
    padding: 10px 5px 10px 5px;
    cursor: pointer;
    flex: 1;
}
button.termsDecline {
    width: 70px;
    color: black;
    background-color: lightgray;
    border: none;
    border-radius: 5px;
    margin-right: 5px;
    padding: 10px 5px 10px 5px;
    cursor: pointer;
}
#approvalDlg, #dataApprovalDlg {
    width: 600px;
    height: 60%;
}
