/**
 * Elementor Login Widget Styles
 */

.pp-login-widget-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pp-avatar-initials {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--e-global-color-primary, #2271b1); /* Initial fallback */
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.pp-avatar-initials:hover {
    background-color: var(--e-global-color-secondary, #135e96);
}

.pp-login-widget-login {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pp-login-link {
    font-weight: 500;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.pp-login-link:hover {
    text-decoration: underline;
}
