
body {
    user-select: none;
}

.findTitle {
    color: #036382;
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 100px;
}

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

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

.findForm {
    width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}
.findForm > .findFormRow {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
}
.findForm > .findFormRow > label:first-child {
    width: 100px;
    text-align: center;
    margin-right: 5px;
}
.findForm > .findFormRow > label:not(:first-child) {
    text-align: center;
    flex: 1;
}
.findForm > .findFormRow > input:not([type="checkbox"]) {
    height: 30px;
    border: 1px solid black;
    border-radius: 5px;
    flex: 1;
}
.findForm > .findFormRow:not(:last-child), .findForm > hr:not(:last-child) {
    margin-bottom: 10px;
}
#btnFind, #btnChangePwd {
    width: 100px;
    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;
}
#btnBack {
    width: 100px;
    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;
}
