.page-component.protect-component {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-component.protect-component-admin > div {
    background-color: orange;
    border: 1px solid #cccccc;
    padding: 10px;
}

.protect-component .protect-dialog {
    background-color: white;
    border: 1px solid #cccccc;
    width: 320px;
}

.protect-component .protect-dialog .wrong-password {
    margin: 0px;
    font-size: 12px;
    text-transform: lowercase;
    font-weight: bold;
    color: #890202;
    text-align: right;
}

.protect-component .protect-dialog h1 {
    background-color: #eeeeee;
    margin: 0;
    font-size: 14px;
    padding: 5px;
    font-weight: bold;
}

.protect-component .protect-dialog form {
    margin: 20px 10px 10px 10px;
}

.protect-component .protect-dialog form input[type="password"] {
    border: 1px solid #cccccc;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}

.protect-component .protect-dialog form input[type="submit"] {
    border: 1px solid #cccccc;
    border-radius: 0;
    background-color: #eeeeee;
    padding: 5px 20px;
    box-sizing: border-box;
    cursor: pointer;
}

.protect-component .protect-dialog .footer {
    border-top: 1px solid #cccccc;
    margin-top: 20px;
    padding-top: 10px;
    display: flex;
    justify-content: flex-end;
}
