<style>
.floating-button {
z-index: 9999;
position: fixed !important;
top: inherit !important;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
color: #00B28E !important;
border: none;
cursor: pointer;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
font-size: 20px !important;
white-space: nowrap;
border-radius: 30px !important;
padding-right: 50px !important;
padding-left: 50px !important;
padding-top: 15px !important;
padding-bottom: 15px !important;
background: white !important;
border: 2px solid #00b28e !important;
display: flex; /* Ajoutez cette propriété pour utiliser flexbox */
align-items: center; /* Ajoutez cette propriété pour centrer verticalement le contenu */
}
</style>
{% if not app.user %}
<!-- BTN LOGIN / REGISTER MOBILE ! -->
<div class="mobileshow" id="div_notUserFlotant">
<a class="button floating-button ripple-effect " href="{{ path('register_freelance_mobile') }}">
<b>Register 100% free <i class="icon-feather-arrow-right"></i></b>
</a>
</div>
{% endif %}