@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

body {
    background-color: white;
    color: black;
    font-family: "ubuntu";
}

.mainTextTop {
    font-family: 'Ubuntu', sans-serif;
    font-size: 31px;
    font-weight: bold;
}

.textButtonTap {
    color: #009006;
    position: absolute;
    bottom: 104px;
    font-size: 32px;
    font-family: "ubuntu";
    font-weight: 800;
    text-shadow: 2px 2px 0px #c1c1c1;
}

.textButtonTap2 {
    color: #000000;
    position: absolute;
    bottom: 86px;
    font-size: 16px;
    font-weight: 800;
}

.nextTapCount {
    bottom: 86px;
    font-weight: 800;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.backgroundBubble {
    background-color: #002278;
    border-radius: 100px;
    color: white;
    padding: 5px 10px;
}

.backgroundBubble2 {
    background-color: #ededed;
    border-radius: 100px;
    color: white;
    padding: 5px 10px;
    color: black;
}

.topbubble {
    font-size: 10px;
    font-weight: 400;
}

.bottombubble {
    font-size: 12px;
    font-weight: bold;
}

.referaltitle {
    font-size: 26px;
    font-weight: bold;
}

.readreferal {
    width: 100%;
    background-color: #F3F3F3;
    border-radius: 100px;
    height: 35px;
    font-size: 12px;
    margin-top: 15px;
    border: none;
    padding-left: 10px;
    box-sizing: border-box;
}

.steps3 .subtitle {
    font-size: 26px;
    font-weight: bold;
}

.steps3 .content {
    font-size: 12px;
}

.steps3strattitle {
    font-size: 32px;
    font-weight: bold;
}

.dataStats {
    font-size: 12px;
}

.boxregister {
    background-color: #ffffff;
    border: 1px solid #002278;
    opacity: 0.94;
    position: absolute;
    top: 60px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: black!important;
    box-shadow: 3px 5px 8px 0px #00000057;
    border-radius: 4px;
}

.boxregister .click {
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
    color: white !important;
}

.boxregister .message {
    font-size: 12px;
    color: black;
}

a:visited {
    color: black;
}

.boxconnect .title {
    font-size: 12px;
    font-weight: bold;
}

.boxconnect .link {
    font-size: 12px;
    text-decoration: underline;
}


.boxconnect .text {
    font-size: 12px;
}

#register_email, #register_password, #login_email, #login_password {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 4px solid #c8c8c8;
    border-radius: 28px;
    font-size: 14px;
}

#register_submit, #login_submit {
    font-size: 16px;
    border: 6px solid #c8c8c8;
    background-color: #030c0f;
    color: white;
    padding: 10px 20px;
    margin-top: 30px;
    transition: transform 0.3s ease;
    animation: shake 2s;
    cursor: pointer;
}

@keyframes shake {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.wrapButtonTap {
    cursor: pointer;
}




.alert-danger {
        background-color: #7e0000;
    text-align: center;
    padding: 15px;
}


.alert-success {
        background-color: #007e44;
    text-align: center;
    padding: 15px;
}




.inactive {
            opacity: 0.5; /* Par exemple, rendre l'image semi-transparente */
        }