.cws-modal-wrapper {
    position: fixed;
    inset: 0;
    background: #00000036;
    z-index: 999;
    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-check-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);
}

.cws-email {
    color: var(--cws-text);
}

form#cws-otp-form {
    display: grid;
    width: 100%;
}

.cws-otp-wrapper {
    display: flex;
    gap: 1rem;
    margin-bottom: .8rem;
    justify-content: center;
}

.cws-otp-wrapper input {
    width: 3rem;
    height: 3rem;
    text-align: center;
    font-size: 1.2rem;
    
    border-radius: 6px;
    outline: none;
}

.cws-resend-wrapper {
    display: grid;
    justify-items: center;
    margin-bottom: 1rem;
    font-size: .9rem;
}

.cws-resend-action {
    display: flex;
    align-items: center;
    gap: .5rem;
    line-height: normal;
}

.cws-resend-btn{
    color: var(--cws-accent-primary);
}

.cws-resend-btn:hover{
    color: var(--cws-input-border-focus);
}

.cws-resend-wait-text {
    color: var(--cws-light-text);
}

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