.page-body {
    background-color: white;
}

#AccountView {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.account-content {
    display: grid;
    background-color: var(--bright-background);
    padding: 30px;
    width: 50%;
    border: solid 1px var(--dark-grey);
    grid-template-columns: 2fr 5fr;
    grid-gap: 10px;
}

#AccountView select,
#AccountView input[type=text],
#AccountView input[type=password],
#AccountView input[type=button],
#AccountView input[type=email],
#AccountView span {
    width: 80%;
    margin-bottom: 10px;
}

#AccountView .explanation {
    font-size: 85%;
    color: #444444;
}

#AccountView .warning-notice {
    font-size: 85%;
    color: darkgray;
    width: 50%;
}

#AccountView .warning-notice h3{
    font-weight: 800;
}

#AccountView .warning-notice h3,
#AccountView .warning-notice p {
    font-size: 85%;
    color: var(--grey);
    margin: 10px 0;
    text-align: justify;
}


#AccountView .password {
    display: flex;
    flex-direction: column;
}

#AccountView span.center {
    text-align: center;
}

.account-request,
.reset-password {
    display: grid;
    padding: 20px;
    grid-template-columns: 3fr 2fr 1fr;
    grid-gap: 10px;
    align-items: center;
}

.reset-password input,
.reset-password select,
.account-request input,
.account-request select{
    width: 220px;
}

.dialog-content.request {
    width: 40%;
}

#PinOverlay .pin-dialog-content {
    position: absolute;
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    z-index: 701;
    padding: 22px;
    background-color: var(--bright-background);
    min-width: 150px;
    max-height: 90%;
    overflow: auto;
}

.pin-dialog-content > div{
    margin: 10px;
}
