.cws-modal-wrapper {
    position: fixed;
    inset: 0;
    background: #00000036;
    z-index: 999;
    display: none;
}

body.cws-modal-show .cws-modal-wrapper{
    display: flex;
}

.cws-modal {
    max-width: 500px;
    position: relative;
    margin: auto;
    background: white;
    width: 100%;
    padding: 1.5rem;
    display: grid;
    justify-items: center;
    border-radius: .5rem;
}

.cws-shield-lock-icon {
    border-radius: 50%;
    padding: 1rem;
    background: #295872;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    margin-bottom: 1rem;
}

.cws-modal h3 {
    font-weight: bold;
}

.cws-modal-subtext {
    font-size: 15px;
    text-align: center;
    margin: .5rem 0 1.5rem;
    line-height: 1.4;
    color: var(--cws-light-text);
}

form#cws-forgot-password-form {
    display: grid;
    width: 100%;
    gap: 1.5rem;
}

.cws-modal-close-btn.bi.bi-x {
    position: absolute;
    right: 0;
    font-size: 2rem;
    line-height: 1;
    padding: .5rem;
}

#cws-send-reset-link-btn::before{
    content:'\F6C0';
    font-family: 'Bootstrap-icons';
    width: 25px;
    text-align: right;
}
#cws-send-reset-link-btn:has(.cws-loader-show )::before{
    content: '';
    width: unset;
}