.blob {
    background: #4279BC;
    border-radius: 50%;
    margin: 10px;
    height: 10px;
    width: 10px;
    transform: scale(1);
    animation: pulse 3s infinite;
}

.blob_div {
    display: flex;
    align-items: center;
    gap:5px;
    justify-content: center;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 #4279bcb3;
    }
    70% {
        transform: scale(1.2);  /* Increased from 1.0 to 1.5 */
        box-shadow: 0 0 0 7px rgba(0, 0, 0, 0);  /* Increased from 5px to 10px */
    }
    100% {
        transform: scale(0.97);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.highlight_grey{
    background-color: #d3d3d37d;
    padding:0 2px;
    border-radius:0.25em;
}

.verification_text_mid{
    margin-top: var(--sp-x);
    text-align: center;
    line-height:1.5;
}

.verify-email-buttons{
    border-top: 1px solid #e3e3e3;
    padding-top: 1em;
    margin-top: 2em;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.no-email-received{
    font-size: var(--text-size-90);
    margin-bottom: 5px;
    color: grey;
}

.message_email_send_feedback{
    border-radius: 0.25em;
    padding:var(--sp-xxs);
    background-color: #B8D7FF;
    font-size: var(--text-size-90);
    margin-top:5px;
    width:fit-content;
}

.center_email_forgot{
    display: flex;
    flex-direction: column;
    gap:4px;
    margin-top:var(--sp-m);
}

.lable_small_ver{
    font-size: var(--text-size-90);
    color: grey;
}

.message_btn_send_link {
    margin-top: var(--sp-mm);
    display: flex;
    justify-content: flex-end;
}