#main {
    background-color: rgb(255, 255, 230);
}

div.dc-centre-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

div.dc-login-panel,
div.dc-forgot-panel,
div.dc-reset-panel {
    margin: auto;
    padding: 20px;
    min-width: 100px;
    min-height: 100px;
    background-color: white;
    border-style: solid;
    border-radius: 15px;
    border-width: 2px;
    border-color: black;
}

div.dc-input-surround {
    margin: 20px;
    padding: 5px;
    border-style: solid;
    border-width: 2px;
    border-radius: 3px;
    border-color: blue;
    background-color: inherit;
}

input.dc-input-box {
    padding: 10px;
    width: 60ch;
    border-style: none;
    border: 0;
    background-color: inherit;
}

span.client-name-display {
    font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
}

div.dc-edit-title {
    transform: scale(0.75) translateY(-66px);
    position: absolute;
    background-color: white;
    padding: 0 15px;
}

.login-header {
    text-align: center;
    margin: 10px 0 8px;
}

.login-context {
    text-align: center;
    font-size: 0.85em;
    color: #555;
    margin: 0 0 28px;
}

.dc-btn-wide {
    width: calc(50ch);
    box-sizing: border-box;
    background-color: blue;
    color: white;
    border: none;
    padding: 12px 8px;
    cursor: pointer;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
}

.dc-btn-wide span {
    font-size: 1.5em;
}

.dc-reset-pw {
    text-align: center;
    margin-top: 20px;
}

.dc-reset-pw a {
    color: blue;
    text-decoration: none;
}

.dc-reset-pw a:visited {
    color: blue;
}

.dc-reset-pw a:hover {
    text-decoration: underline;
}

.dc-code-boxes {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px;
}

.dc-code-box {
    width: 46px;
    height: 56px;
    font-size: 1.6em;
    font-family: monospace;
    text-align: center;
    text-transform: uppercase;
    border: 2px solid blue;
    border-radius: 3px;
    background-color: inherit;
    outline: none;
    caret-color: transparent;
}

.dc-code-box:focus {
    background-color: #eef;
    border-color: #0044ff;
}

.dc-input-error {
    border-color: red !important;
}

input.dc-pw-box {
    width: calc(60ch - 60px);
}

.dc-show-pw {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 6px;
    color: blue;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    line-height: 0;
}

.dc-show-pw:hover {
    color: #0044ff;
}

.dc-pwd-rules {
    font-size: 0.8em;
    color: #555;
    margin: -8px 20px 4px;
    line-height: 1.6;
}

.dc-success-text {
    color: blue;
    font-size: 0.9em;
    margin: 8px 20px;
    text-align: center;
}

.dc-picker-panel {
    min-width: 320px;
}

.dc-picker-prompt {
    text-align: center;
    font-size: 0.9em;
    color: #555;
    margin: 0 0 16px;
}

.dc-account-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.dc-account-btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: none;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.dc-account-row .dc-account-btn {
    flex: 1;
    margin-bottom: 0;
}

.dc-account-btn:hover {
    border-color: blue;
    background: #f0f0ff;
}

.dc-account-signout {
    flex-shrink: 0;
    padding: 10px 12px;
    background: none;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1em;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: border-color 0.15s, color 0.15s;
}

.dc-account-signout:hover {
    border-color: #c00;
    color: #c00;
}

.dc-account-btn--add {
    border-style: dashed;
    color: blue;
    text-align: center;
}

.dc-account-btn--add:hover {
    background: #f0f0ff;
}

.dc-picker-divider {
    border-top: 1px solid #eee;
    margin: 12px 0;
}