.profile-editable {
    border-top: 1px solid #0003;
}

.profile-editable .form-group, .new-user .form-group {
    margin-bottom: 16px;
    margin-top: 8px;
}

.profile-editable label, .new-user label {
    margin-bottom: 8px;
    font-size: 20px;
}

.password-reset-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 500px;
    height: 200px;
    background: #fff;
    border: 1px solid #0003;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    text-align: center;

    display: none;
}

.password-reset-modal header {
    width: 100%;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

.password-reset-modal.active {
    display: flex;
}

.password-reset-modal::before {
    content: "";
    display: block;
    position: absolute;
    top: -100vh;
    left: -100vw;
    width: 200vw;
    height: 200vh;
    background: #0002;
    z-index: -1;
}

.password-reset-modal .text-success {
    color: lime;
    display: block;
}

.password-reset-modal .text-success em {
    margin-right: 8px;
}

.password-reset-modal .close {
    position: fixed;
    top: 12px;
    right: 12px;
}

.avatar {
    width: 128px;
}