.btn {
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.btn-assistances {
    background-color: white;
    color: #049DD9;
    border: 1px solid #049DD9;
    font-weight: 500;
    width: 100%;
    padding: 8px 12px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

    .btn-assistances:hover, .btn-assistances:active, .btn-assistances:focus {
        background-color: #F6FCFF !important;
        color: #049DD9 !important;
        box-shadow: 0 0 0 2px #AEE8FE;
    }

.btnFAQ {
    margin-left: 16px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 400;
}

    .btn-primary:hover, .btn-primary:active, .btn-primary:focus {
        background-color: var(--primary-hover2);
        box-shadow: 0 0 0 4px #AEE8FE;
    }

    .btn-primary:disabled {
        background-color: #DEDFE3 !important;
        color: #6F7585 !important;
        font-weight: 600;
        cursor: not-allowed !important;
        opacity: 0.7 !important;
    }

.btn-secondary {
    background-color: #e7e7e7;
    color: var(--neutral3);
    font-weight: 400;
}
