.modal-dialog {
    display: table;
    height: calc(100vh);
    margin: auto;
    min-width: 200px;
    pointer-events: none;
}
.modal-dialog-auth,
.modal-dialog-forgotpassword,
.modal-dialog-registration {
    display: table;
    height: calc(100vh);
    margin: auto;
    min-width: 200px;
    pointer-events: none;
    width: auto;
}
.auth-flex {
    display: flex;
    justify-content: center;
    height: 100%;
    width: fit-content;
    margin: auto;
}
.auth-flex .modal-dialog {
    margin: 0 10px;
}
.modal-dialog-row {
    display: table-row;
}
.modal-cell {
    display: table-cell;
    vertical-align: middle;
}
.modal-content {
    pointer-events: auto;
}
.modal-header {
    padding: 5px 15px;
    background-color: #f4f4f4;
}
.modal-content input[type=text],
.modal-content input[type=number],
.modal-content input[type=password],
.modal-content input[type=email] {
    width: 100%;
    height: 42px;
    padding: 13px 20px;
    border-radius: 2px;
    border: 1px solid var(--input-border-color);
    background-color: #fff;
    color: #676a73;
    line-height: 16px;
}
.modal-content input[type=text]:hover,
.modal-content input[type=password]:hover,
.modal-content input[type=email]:hover {
    border-color: #0085ff;
}
.modal-content .alert {
    height: auto;
    width: auto;
    border-radius: 3px;
    margin-bottom: 5px;
    padding: 3px;
    flex-wrap: wrap;
}
.modal-content .alert.alert-warning {
    background-color: goldenrod;
    color: ivory;
}
.modal-content span.starrequired {
    color: red;
    margin-right: 5px;
}
.pass-group {
    position: relative;
}
.pass-group .fa {
    position: absolute;
    right: 10px;
    top: 10px;
}
.pass-group .fa::before {
    font-size: 20px;
}
.pass-group:not(.show) .fa-eye {
    display: none;
}
.pass-group.show .fa-eye-slash {
    display: none;
}
